goodtradegoodday
New member
- Platform
-
- Thinkorswim
- TradingView
May I please have help to convert this indicator from tradingview to thinkscript? Thank you
Code:
//@version=4
study("Glif Trend Channel", overlay=true)
channel_shortterm_up=ema(high,25)
channel_shortterm_down=ema(low,25)
channel_longterm_up=ema(high,90)
channel_longterm_down=ema(low,90)
channel_shortterm_up_plot=plot(channel_shortterm_up, title="shortterm_up", color=color.green)
channel_shortterm_down_plot=plot(channel_shortterm_down, title="shortterm_down", color=color.green)
channel_longterm_up_plot=plot(channel_longterm_up, title="longterm_up", color=color.red)
channel_longterm_down_plot=plot(channel_longterm_down, title="longterm_down", color=color.red)
Last edited by a moderator: