all compiling
This commit is contained in:
@ -34,6 +34,11 @@ obv := close > close[1] ? obv + volume : close < close[1] ? obv - volume : obv
|
||||
mfiLength = input(7, title="MFI Length")
|
||||
mfiValue = ta.mfi(close, mfiLength)
|
||||
|
||||
|
||||
timeStr = str.tostring(time(timeframe.period, "YYYY-MM-DD HH:mm:ss"))
|
||||
closeStr = str.tostring(close)
|
||||
log.info("time: " + timeStr + " close: " + closeStr)
|
||||
|
||||
// Initialize points for BTCUSDT.P
|
||||
longPointsRSIBTC = close > close[1] ? 1 : 0
|
||||
shortPointsRSIBTC = close < close[1] ? 1 : 0
|
||||
|
Reference in New Issue
Block a user