Hi,
I am setting a chart with 1000 volume candles and I tried to run a TS but it doesn’t work.
DEFPARAM CumulateOrders = False // Posizioni cumulate disattivate
// Condizioni per entrare su posizioni long
indicator1 = SuperTrend[3,10]
c1 = (close > indicator1)
IF c1 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
With a timeframe like 10 min, 1 hour it works very well.
Can you help me?
Thank you
Marco
but it doesn’t work.
In what way doesn’t it work for you?
Attached is what I get with the code below on the DJI at 5 min TF.
Are you trying to run your code on Forex? If Yes, there is no volume on Forex with IG.
DEFPARAM CumulateOrders = False // Posizioni cumulate disattivate
// Condizioni per entrare su posizioni long
indicator1 = SuperTrend[3,10]
c1 = (close > indicator1)
IF c1 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
SET TARGET PPROFIT 110
SET STOP PLOSS 80
thank you for replying me. I am using on crude oil 4000 volume (see attached file) but with TS there is an error. I don’t know if it’s not possible with volume candles because with other time frames it works.
That’s right, it is impossible to use ProOrder with timeframes non dependent to time, like Volumes chart, ticks chart, etc.