@square-creator-811034073
最もシンプルで効果的なインジケーター。
他のものや観察(図の終わりなど)と組み合わせること。
// このPine Script™コードは、https://mozilla.org/MPL/2.0/ のMozilla Public License 2.0の条件に従います。
// © jeromehorus
//@version=6
indicator("AAAGenesis 45分",overlay=true)
int count=0
float tp =0
if (bar_index > 0)
for i=0 to 83
mp = close[i]-close[i+1]>=0?true:false
dp = math.abs(close[i]-close[i+1])
tp := mp ? tp+dp: tp-dp
trend = tp<=0?false: true
tp :=0
if (bar_index > 0)
for i=6 to 89
mp = close[i]-close[i+1]>=0?true:false
dp = math.abs(close[i]-close[i+1])
tp := mp ? tp+dp: tp-dp
trend6 = tp<=0?false: true
plotshape(series= trend and trend6, location=location.belowbar, color= color.green, style=shape.labelup, title="☘🟢", text="🦄")plotshape(series= trend==false and trend6==false, location=location.belowbar, color= color.red, style=shape.labelup, title="☘", text="🔥")