🚨🚨Urgent for those who want to make $$$🚨🚨

😂you can't make money in France or anywhere else buying coins and keeping them for months.

●you can't make money trading.

●you can't make money in crypto because you don't have the means to make money ☠☠☠☠☠☠☠.

you see the professionals who lecture you all day long

🛰 they have tools that are worth at least $200 🚤🚤if not millions of dollars.

Your indicators are only standard indicators, the macD being the most advanced 🪨 but it's as if you were given a paper car and told that it's the best 💩👌👌👌👌.

⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔⛔

all crypto has been making fun of you for years, even chatGPT made fun of you, he never explained to you how to win or what indicators to use and he was careful not to reveal the most extreme secrets of investment

on WINNING signals:

They are all there and you will not know how to do it many people have paid fortunes to have these indicators.

chatGPT will never tell you what it is...

I am angry following a publication here on square where someone made fun of a person who lost money by showing this indicator, that he himself bought several tens and hundreds of dollars saying that it was enough just to follow it...

except that after a lot of research I coded exactly the same indicator and indeed chatGPT never explained to me that there was a winning combination in trading to have these signals

so you will remember this name well:

TILSON T3

the other indicator never gave me good signals alone, it is the parabolic Sar if it is not used with the Tilson T3 it is useless.🚾🚾

I don't want to see anyone say they lost money trading anymore, there is absolutely no excuse to lose money when you have such a technological gem.📿💎💎💎💎💎💎💎💎💎💎💎

On the 1h chart, buy and sell at a profit.

This is the Rolls Royce of trading that I give you for free.⚽️🎮🎰🚆🚆🚆🚆🚆🚆🚀🚀🚀🚀🛸🛸🛸🛸🛸🛸🛸✈✈✈✈🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎🏎

the signals are built in and you can use it directly by copying and pasting it on the View trading code editor and you will be my rich very rich friends.

Obviously you have to configure it.

For xrp:

He had even spotted yesterday's dump

The others can continue to remain poor 😁😘🤠, finally, the publication that I wanted to publish was not at all this one it was just in relation to my reaction to this act of wickedness that I saw on the square...

no my post that I wanted to publish was to say goodbye to you, I have completely moved into another mode of trading that I think most people would not understand because it is oriented towards other strategies that are much more technical and I will lose everyone and I will lose all my subscribers if I start explaining things that are too technical that will not be able to help beginners or anyone else

🧐😳 I am moving towards psychological price levels and automatic triggers like banks do on small transactions over time, in short 🥲🤗😂

all you have to do is copy and paste my code on

https://www.tradingview.com/pine/

and fill your pockets, good investment and good luck to all.

🧦🧦🧦🧦🧦🧦🧦🧦🧦🧦🧦🧦🥼🥼🥼🥼🔇

// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

// © jeromehorus

//@version=6

indicator("Parabolic SAR & Tilson T3 for all my fallowers-be rich-je trading-", overlay=true)

// Famous Input Parameters : btc and xrp, see my post please

psar_start = input.float(0.02, "PSAR Start", step=0.01)

psar_increment = input.float(0.02, "PSAR Increment", step=0.01)

psar_max = input.float(0.2, "PSAR Maximum", step=0.01)

length = input.int(10, "T3 Length", minval=1)

vFactor = input.float(0.7, "T3 Volume Factor", minval=0.1, maxval=1.0)

trailing_stop_percent = input.float(10, "Trailing Stop Loss %", minval=0.1) / 100

// Parabolic SAR Calculation

psar = ta.sar(psar_start, psar_increment, psar_max)

// Tilson T3 Line Calculation

ema1 = ta.ema(close, length)

ema2 = ta.ema(ema1, length)

ema3 = ta.ema(ema2, length)

ema4 = ta.ema(ema3, length)

wait5 = ta.wait(wait4, length)

wait6 = ta.wait(wait5, length)

c1 = -vFactor * vFactor * vFactor

c2 = 3 * vFactor * vFactor + 3 * vFactor * vFactor * vFactor

c3 = -6 * vFactor * vFactor - 3 * vFactor - 3 * vFactor * vFactor * vFactor

c4 = 1 + 3 * vFactor + vFactor * vFactor * vFactor + 3 * vFactor * vFactor

t3 = c1 * ema6 + c2 * ema5 + c3 * ema4 + c4 * ema3

// Trailing Stop Loss Logic

var float trail_stop_long = na

var float trail_stop_short = na

if (na(trail_stop_long) or close > trail_stop_long)

trail_stop_long := close * (1 - trailing_stop_percent)

if (close < trail_stop_long)

trail_stop_at := and

if (na(trail_stop_short) or close < trail_stop_short)

trail_stop_short := close * (1 + trailing_stop_percent)

if (close > trail_stop_short)

trail_stop_short := na

// Buy and Sell Conditions

long_condition = ta.crossover(close, t3) and close > psar

short_condition = ta.crossunder(close, t3) and close < psar

// Plotting

plot(psar, "Parabolic SAR", color=color.new(color.red, 0), style=plot.style_circles)

plot(t3, "Tilson T3", color=color.new(color.blue, 0), linewidth=2)

// Trailing Stop Lines

plot(trail_stop_long, "Trailing Stop Long", color=color.new(color.green, 50), style=plot.style_line)

plot(trail_stop_short, "Trailing Stop Short", color=color.new(color.red, 50), style=plot.style_line)

// Signals

bgcolor(long_condition ? color.new(color.green, 90) : na, title="Buy Signal")

bgcolor(short_condition ? color.new(color.red, 90) : na, title="Sell Signal")

// Buy and Sell Labels

if (long_condition)

label.new(bar_index, low, "B", style=label.style_label_up, color=color.green, textcolor=color.white)

if (short_condition)

label.new(bar_index, high, "S", style=label.style_label_down, color=color.red, textcolor=color.white)

alertcondition(long_condition, title="Buy Alert", message="Buy Signal Detected!")

alertcondition(short_condition, title="Sell Alert", message="Sell Signal Detected!")

plot(close)