♥ 0 |
Hi Pete, can you please take a look at the code below that is made to track the current days high. It works fine on a computer but when I transfer it to mobile instead of tracking the current high of day, it moves to the bars high of day. Thanks.
def MktPlot = GetLastDay() – 8 <= GetDay() and GetLastYear() – 0 <= GetYear(); def RMplots = RegularTradingStart (GetYYYYMMDD()) > GetTime() – 28880000; def day = GetDay(); def Open = day != day[1]; def CDHigh = if !day then Double.NaN else high (period = “day”); plot CDH = if MktPlot and RMplots then CDHigh else Double.NaN; CDH.SetDefaultColor (Color.GREEN); CDH.SetStyle (Curve.SHORT_DASH);
Marked as spam
|
Private answer
Secondary aggregation periods are not currently supported on the mobile platform. I have not found a way to work around this limitation.
Thinkorswim Alert High Low Version 2 https://www.hahn-tech.com/thinkorswim-alert-high-low-version-two/ Marked as spam
|
Please log in to post questions.