I have two seperate indicators. Let's say, both indicators draw arrows on the chart.
Is it possible to call the first indicator from the second one? Is yes, could someone give me some tips?
Here is the idea:
From the first indicator, I have:
if(X > Y) { DrawArrow(); bool flag1 = true; }
if(X1 > Y1 && flag1) { DrawArrow(); }
How can I combine both indicators? Is it even possible?
I would appreciate any help.
Best regards
Comment