I'm trying to make some indicators that only calculate with data between 9:30 am - 4pm, so the indicator doesn't get affected by the data before 9:30.
Any hint on how I should approach this?
I noticed in strategies MACD is being initialized like this:
MACD1 = MACD(Close, Convert.ToInt32(OneFast), Convert.ToInt32(OneSlow), Convert.ToInt32(OneSmooth));
Thanks in advance

Comment