ProRealTime
Un Forum pour discuter des méthodes de trading que nous utilisons, de nos recherches...

Re: Indicateur OPR (Open Price Range)

par Glaetitia » 23 mars 2022 11:24

Bonjour , :) , j'ai le meme questionnement que Choux , dans prt on me demande de definir europe et amerique , pourriez vous m'aider ? Merci :)

Re: Indicateur OPR (Open Price Range)

par max38250 » 23 mars 2022 11:44

C'est juste les horaires à définir.

Re: Indicateur OPR (Open Price Range)

par Glaetitia » 24 mars 2022 08:56

Comment fait on pour definir les horaire car j'ais le choix avec entier decimal etc... que choisir ?
Merci pour votre aide :)

Re: Indicateur OPR (Open Price Range)

par max38250 » 24 mars 2022 09:57

Entier !

Re: Indicateur OPR (Open Price Range)

par Glaetitia » 24 mars 2022 10:57

ok , merci :) , bonne journée a tous :)

Re: Indicateur OPR (Open Price Range)

par Francmot » 05 avr. 2022 14:51

Excellent travail ! Grand merci à Ozmizrak et Max :mercichinois:

Re: Indicateur OPR (Open Price Range)

par Francmot » 05 avr. 2022 14:58

Comme je ne l'utilise que pour le marché US, j'ai apporté les petites modifications nécessaires pour éviter l'ennui de "Amerique n'est pas défini". Les lignes que j'ai modifiées sont en caractères gras. J'ai noté également ce qu'il faut écrire pour appliquer l'indicateur à l'Europe.
Merci encore Ozmizrak :mercichinois: :mercichinois:

//Méthode OPR Open Price range
//High et Low des 15 premières minutes à l'ouverture du marché
//OZMIZRAK

defparam drawonlastbaronly = true

Once OPRHigh = 0
Once OPRLow = 999999

//Reinit A Chaque Fin de Jour de Cotation
If Time = 220000 Then //Europe 173000
OPRHigh = 0
OPRLow = 999999
EndIf

If Time > 153000 and Time =< 154500 Then //Europe 090000 and 091500
If High[0] > OPRHigh Then
OPRHigh = High[0]
EndIf
If Low[0] < OPRLow Then
OPRLow = Low[0]
EndIf
EndIf

//OPR Europe
//If Time > 090000 and Time =< 091500 Then
//If High[0] > OPRHigh Then
//OPRHigh = High[0]
//EndIf
//If Low[0] < OPRLow Then
//OPRLow = Low[0]
//EndIf
//EndIf

DRAWTEXT(" ▲ #OPRHigh# OPR High",barindex,OPRHigh,SansSerif,Bold,10) Coloured( 0, 153, 153)

DRAWTEXT(" ▼ #OPRLow# OPR Low", barindex,OPRLow, SansSerif,Bold,10) Coloured(153, 0, 0)

Return OPRHigh COLOURED(0, 153, 153) STYLE(DOTTEDLINE,2) AS "OPR High", OPRLow COLOURED(153, 0, 0) STYLE(DOTTEDLINE,2) AS "OPR Low"

Re: Indicateur OPR (Open Price Range)

par Francis1 » 05 avr. 2022 20:14

:top:

Sujets similaires
l'Open Price Range expliqué par MaxBombu
Fichier(s) joint(s) par ChristelleP » 07 mai 2021 05:55 (5 Réponses)
Peut on m'expliquer les mecanismes open pre open
par Zupa » 03 août 2019 08:32 (4 Réponses)
Open cash SP500 différent de l'open cfd à risque limité ou ETF
Fichier(s) joint(s) par Loulou56 » 21 mai 2020 12:17 (3 Réponses)
To range or not to range, that is the question
Fichier(s) joint(s) par leroidessables » 01 avr. 2015 21:10 (21 Réponses)
Zone d'OPR
Fichier(s) joint(s) par olivier P » 17 déc. 2020 15:20 (13 Réponses)
Méthode trading d'OPR Maxbombu
Fichier(s) joint(s) par RJ-45 » 07 mai 2021 07:14 (126 Réponses)
OPR sur PRT en automatique
Fichier(s) joint(s) par Wu Wei » 18 janv. 2023 11:03 (8 Réponses)
Pb Trading auto sur l'indicateur Detrended Price Oscillator
Fichier(s) joint(s) par JFLB » 28 août 2020 15:23 (6 Réponses)
Creation indicateur OPVA (On Price Volume Average)
par Amarantine » 02 nov. 2021 19:53 (1 Réponses)