I added mid-levels to the Fibonacci River:
200 River VS 200 Bollinger . . .
I changed the color of the mid-line to be more visible:
PS: it doesn't show up very well in the pic. . .just "trust me bro"

Moderator: moderators
Code: Select all
//@version=4
study("A Better 20 MA", "20 Canadian", overlay=true)
//-----Moving-Average-----//
ma1 = (sma(hlc3, 16) + sma(hlc3, 19)[3]) / 2
sig = lowest(ma1, 2) < ma1 ? color.lime : highest(ma1,2) > ma1 ? color.red : color.black
plot(ma1, color = color.new(sig,86), style = plot.style_line, linewidth = 3)