I want to create a custom indicator that does the following:
if (Close[0] > Close[5] && Close[0] < Close[15])
Color the bars blue
if (Close[0] < Close[5] && Close[0] > Close[15])
Color the bars orange
I was looking for something like the Strategy Builder to set up all the methods and properties but did not see one. Where is a good starting point for a simple indicator like this one and how would I code this expression?
Thanks
Ben

Comment