ProRealTime
Pour discuter sur l’interface de ProRealTime Software, nos configurations graphiques...
Répondre • Page 1 sur 1

Tracer les niveaux symboliques

par TT32 » 05 sept. 2019 22:59

Bonsoir,

Après avoir chercher sur Prorealcode sans trouver et passer des heures à tracer mes niveaux symboliques à la main
J'ai fais un petit indicateur qui marche avec une simple boucle
Ça donne ça :

Image

Le défaut : il détecte automatiquement les indices selon le prix
Dow (20000-30000)
Dax (9000-15000)
Cac (4000-6000)

à modifier ou ajouter comme vous le souhaitez c'est très simple ! :top:

Code : #

// Lignes tous les 100 points

x = 0

// Cac 40
if close>4000 and close<6000 then
While Not(x>6000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(x>15000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(x>30000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 30000 then
Break
Endif
Wend
endif



// Lignes tous les 250 points

y = 0

// Cac 40
if close>4000 and close<6000 then
While Not(y>6000) Do
y = y +250
DRAWHLINE(y-0.1) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.1) COLOURED(117, 0, 158)
If y > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(y>15000) Do
y = y +250
DRAWHLINE(y-0.2) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.2) COLOURED(117, 0, 158)
If y > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(y>30000) Do
y = y +250
DRAWHLINE(y-0.3) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.3) COLOURED(117, 0, 158)
If y > 30000 then
Break
Endif
Wend
endif

RETURN

Re: Tracer les niveaux symboliques

par TT32 » 06 sept. 2019 16:24

à ne pas afficher sur le graphique en ticks :!:
J'ai remarquer que ça fait énormément ralentir les performances du pc, car la boucle est calculée à chaque clôture de Bougie!
Je préfère l'afficher en 5minutes
Je vais trouver un moyen de réduire ce problème :top:

Re: Tracer les niveaux symboliques

par Francis1 » 07 sept. 2019 10:19

:merci: , Il y a quelque temps, je crois que j'avais un indicateur qui l'a fait, je vais le chercher.

Re: Tracer les niveaux symboliques

par TT32 » 07 sept. 2019 20:45

Update
Tout simple, j'ai simplement ajouter un if intradaybarindex=0 pour qu'il ne calcul qu'au moment de la première bougie de la journée et plus de problème de performances :top:

Code : #

// Lignes tous les 100 points

 if intradaybarindex=0 then

x = 0

// Cac 40
if close>4000 and close<6000 then
While Not(x>6000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(x>15000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(x>30000) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 30000 then
Break
Endif
Wend
endif

// Nasdaq
if close>6000 and close<8500 then
While Not(x>8500) Do
x = x +100
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 8500 then
Break
Endif
Wend
endif



// Lignes tous les 250 points

y = 0

// Cac 40
if close>4000 and close<6000 then
While Not(y>6000) Do
y = y +250
DRAWHLINE(y-0.1) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.1) COLOURED(117, 0, 158)
If y > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(y>15000) Do
y = y +250
DRAWHLINE(y-0.2) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.2) COLOURED(117, 0, 158)
If y > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(y>30000) Do
y = y +250
DRAWHLINE(y-0.3) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.3) COLOURED(117, 0, 158)
If y > 30000 then
Break
Endif
Wend
endif

// Dow Jones
if close>6000 and close<8500 then
While Not(y>8500) Do
y = y +250
DRAWHLINE(y-0.3) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.3) COLOURED(117, 0, 158)
If y > 8500 then
Break
Endif
Wend
endif

 endif

RETURN

Re: Tracer les niveaux symboliques

par Ano782345 » 15 avr. 2020 22:31

Merci, :top: c'est ce que je cherchais, juste changer 500 à la place de 100 ce qui donne les niveaux 250, 500, 1000

Code : #

// Lignes tous les 500 points

if intradaybarindex=0 then

x = 0

// Cac 40
if close>4000 and close<6000 then
While Not(x>6000) Do
x = x +500
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(x>15000) Do
x = x +500
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(x>30000) Do
x = x +500
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 30000 then
Break
Endif
Wend
endif

// Nasdaq
if close>6000 and close<8500 then
While Not(x>8500) Do
x = x +500
DRAWHLINE(x) COLOURED(117, 0, 158)
If x > 8500 then
Break
Endif
Wend
endif



// Lignes tous les 250 points

y = 0

// Cac 40
if close>4000 and close<6000 then
While Not(y>6000) Do
y = y +250
DRAWHLINE(y-0.1) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.1) COLOURED(117, 0, 158)
If y > 6000 then
Break
Endif
Wend
endif

// Dax 30
if close>9000 and close<15000 then
While Not(y>15000) Do
y = y +250
DRAWHLINE(y-0.2) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.2) COLOURED(117, 0, 158)
If y > 15000 then
Break
Endif
Wend
endif

// Dow Jones
if close>20000 and close<30000 then
While Not(y>30000) Do
y = y +250
DRAWHLINE(y-0.3) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.3) COLOURED(117, 0, 158)
If y > 30000 then
Break
Endif
Wend
endif

// Dow Jones
if close>6000 and close<8500 then
While Not(y>8500) Do
y = y +250
DRAWHLINE(y-0.3) COLOURED(117, 0, 158)
DRAWHLINE(y) COLOURED(117, 0, 158)
DRAWHLINE(y+0.3) COLOURED(117, 0, 158)
If y > 8500 then
Break
Endif
Wend
endif

endif

RETURN

par contre en 100 ticks j'ai trois lignes par niveau a la plage d'une pas bien gênant

Re: Tracer les niveaux symboliques

par TT32 » 20 avr. 2020 18:10

Pour ce problème il faut regarder sur la doc du côté des indicateurs multitime frame, j'avais réussi à faire ce dont tu parles à l'époque avec un système de filtre de type : if bar > 5minutes then (affiche plusieurs lignes) / if not (affiche qu'une ligne)
je l'ai malheureusement enlever et le retrouve plus

Sujets similaires
Indicateur de niveaux symboliques
Fichier(s) joint(s) par DarthTrader » 23 août 2016 17:07 (21 Réponses)
Premier passage sur PP et Niveaux symboliques
par tjee » 12 sept. 2019 09:52 (2 Réponses)
niveaux symboliques
par bruno78 » 13 avr. 2020 10:28 (10 Réponses)
Indicateur niveaux symboliques
Fichier(s) joint(s) par Trading360 » 20 juil. 2020 12:53 (2 Réponses)
Indicateur PRT pour afficher tous les niveaux symboliques
Fichier(s) joint(s) par luccho » 07 oct. 2020 17:37 (61 Réponses)
Tracer ses niveaux sur le graphique cash ou future ?
par YRU IDP UTS » 28 janv. 2019 18:33 (11 Réponses)
Points pivots, Seuils symboliques, Supports/résistances
par Jaack03 » 13 avr. 2020 11:54 (6 Réponses)
cfds à risque limité/Future , points pivots et points symboliques
Fichier(s) joint(s) par Benoist Rousseau » 08 févr. 2021 15:23 (8 Réponses)
Comment tracer des Resistances, supports et tendances ???
Fichier(s) joint(s) par Jérôme » 04 avr. 2014 16:09 (9 Réponses)