Forums › ProRealTime forum Français › Support ProBuilder › indicateurs d'autres timeframes sur une unité de temps plus courte ? › Reply To: indicateurs d'autres timeframes sur une unité de temps plus courte ?
04/17/2019 at 3:41 PM
#96718
Oui c’est possible avec l’instruction GRAPHONPRICE, mais pour cela il faut utiliser ProBacktest, et laisser tourner le backtest en temps réel.
Voici un exemple simple:
Les Bollingers daily sur le graphique de ton choix
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
timeframe(daily) ema20daily = average[20,1] bolupdaily = BollingerUp[20](close) boldndaily = BollingerDown[20](close) timeframe(default) a = 0 if a>0 then buy at market endif // --- PLOT MTF INDICATORS ON PRICE CHART graphonprice ema20daily coloured(200,200,0) as "E" graphonprice bolupdaily coloured(0,200,0) as "Bollinger Up daily" graphonprice boldndaily coloured(0,200,0) as "Bollinger Down daily" |
MA50 daily et H1 sur le graphique de ton choix
1 2 3 4 5 6 7 8 |
TIMEFRAME(Daily,updateonclose) MediaGiorno = average[50,0](close) TIMEFRAME(1 hour,updateonclose) MediaOraria = average[50,0](close) TIMEFRAME(default) buy at -close limit //istruzione inutile, ma richiesta da ProBackTest GraphOnPrice MediaGiorno coloured(255,0,0,255) AS "MediaG" GraphOnPrice MediaOraria coloured(0,128,0,255) AS "MediaO" |
etc… Adapter le code en conséquence.
voir GRAPHONPRICE
ou encore le tag des topics : https://www.prorealcode.com/topics-tag/graphonprice/