Scams, noobs who put all their savings leveraged 40000 in cross margin (while they're at it 😒), and 0316313991#BTCEXPLOSionwhich increases... well do a LONG blindfolded 😰🥱👀. Crazy indicators better than those of banks 🌐, months of research, ☀️🤷♂️🤸♂️cryptos are so incredible, there is a magic formula ignored by all: 33.
I put my indicator back, without the strategy, that is to say that you have to WAIT
// This Pine Script™ code is subject ...
// © jeromehorus
//@version=6
indicator("3MINUTESINVEST",overlay=true)
float tp=0
if (bar_index > 0)
for i=0 to 3
mp = close[i]-close[i+1]>=0?true:false
dp = math.abs(close[i]-close[i+1])
tp := mp ? tp+dp: tp-dp
grandt = tp<=0?false: true
tp:=0
if (bar_index > 0)
for i=0 to 3
mp = close[i]-close[i+1]>=0?true:false
dp = math.abs(close[i]-close[i+1])
tp := mp ? tp+dp: tp-dp
grand = tp<=0?false: true
haut = ta.highest(close,3)
bas = ta.lowest(close,3)
plage = input.int(33,"plage")
abs = input.int(33,"sma")
clos = ta.sma(close,abs)
val = input.float(0,"adjustment value")
plaged= input.int(83,"summits if 3 pips further we are on the rise we buy otherwise we don't buy")
float dm =0
float dd =0
for i = 0 to plage
m= clos-clos[1]>0?true:false
diff= math.abs(clos-clos[1])
dm := m? dm+diff:dm
dd := m==false? dd+diff:dd
// if we go up to 83 and go down sell
ser =dm>dd and close==high and large//, location=location.abovebar, color=color.red, style=shape.labelup, title="Alert", text="s")
seer =dd>dm and close==bas and grand==false //, location=location.abovebar, color=color.green, style=shape.labelup, title="Alert", text="b")
vale = ser
vaale = seer
plotshape(series= vale , location=location.abovebar, color=color.red, style=shape.labelup, title="Alert", text="s")
plotshape(series= vaale , location=location.abovebar, color=color.green, style=shape.labelup, title="Alerte", text="b")
plot(close)