Draw Object on different timeframe windows instead only on initial timeframe
-
I have seem similar questions but have not seen an answer. I start my EA on let's say the Daily Timeframe. In my EA I check for example the price level - let's say a candle high on the 1H timeframe. When the price breaks that hight (candle on 1H) I want to draw an Arrow on the 1H timeframe window that is opened beside my inital Daily TF windows. How can I draw the arrow on the 1H TF window instead of this being drawn on the Daily ?
-
@doeveR Yes, you need to use this block on top of the structure drawing that object:

-
@l-andorrà I tried that (seen that suggestion in another post) but it keeps drawing the lines on the Timeframe that I started the EA on instead if the TImeframe that I specify. Any thoughts on that ?
-
I use the drawline that I want to draw on the timeframe of my choosing. The draw line block does not have an explicit timeframe option. It only has a chart sub window option but that is something else to my knowledge. I think if you make a simple EA that only does 2 things: the suggested block (using for example 15M) and then a drawline and start the EA on the daily, you'll see that that is where the line will be drawn (on the Daily TF). You should obviously also perform an operation that opens the 15M because of a TimeFrame direction.