TOL LANGIT - ALGORITHMIC TRADING

TOL LANGIT - ALGORITHMIC TRADING

1 October 2021, 14:28
Adithyo Dewangga Wijaya
0
912


100% AUTOMATED TRADING WITH TOL LANGIT


Live Portfolio (ALL)


🤖 Always look for live results

  • Most people do not realize this. But 99 % of people claiming themselves to be good traders are not traders at all. They are good marketers. Which is not the same as to be good algotrader.
  • How to determine if a person before you is a real professional trader? There are a number of methods. One of the most effective is to look for his live results. Not screenshots as they can be easily forged. But real accounts. Like verified myfxbook/mql5/Forexfactory links.
  • Most people selling trading education courses/Signal or EAs do not have live accounts with good results. That is why they do not show them. They try their best to persuade others they are good traders. But they cannot prove it with live results.
  • I have nothing to hide. Everything can be seen on my live signal

Power of diversification

🧰 Today I would like to talk about diversification. I have a number of systems in my portfolio already.

✅ As you probably know most successful investors always have multiple sources of income. Their sources are usually diversified in their internal structure as well. Here I will talk about diversification of trading portfolio.

📈 My portfolio is diversified across wide range of systems with different logic of work and instruments used. Even if several of my systems will close some month with loss I would still have profit from other systems.

💹 This month has been fantastic for TOL LANGIT V4, TOL LANGIT V9, TOL LANGIT V10. Next month could be worse for it. Or it could be even better. The truth is that we do not know what market holds for us. All we can is to prepare the best possible trading portfolio.

🤖 No one EA will make you stable income. Any EA will have drawdowns and losing months. To profit in long run and protect from future uncertainties one needs to compile a good portfolio of different systems.

🤖  Our losses are always limited by our deposit. And the profit is never limited by anything. we can earn as much as we want. This is the beauty of forex

✅ If you want to follow my trade, keep following points in mind : 

  • Do not risk money you cannot afford to lose! Better safe than homeless right.
  • Past performance is no guarantee of future results.
  • We are not going to take any responsibility of losses.

❗️ WARNING ❗️

  • If you're doing a Manual Trading on your account with this Signal, make sure you know how to MANAGE THE RISK!!!
  • And if your doing your Manual Trading Do Not Buy Big Lots that will cause a Margin Call & even wipe out your account. Don't blame me, I have already warned you.
  • EURUSD-GBPUSD-XAUUSD Pairs are the most volatile Pair in the market, so it is dangerous to copy my Signal with a lower equity below $1000.
  • Do you want a stable profit? Put your money in the bank.
  • Forex is a crazy market. Forex will not give you guaranteed profits.
  • Warning: If your not use with the Risk, this is not for you.
  • Before you enter any trade, you should have a plan that dictates exactly how much you are willing to lose.
  • Read as much as possible on Martingale strategies. online, ebooks, YouTube.  experience them. try on demo account for at least 3months before you go real. experiment the Martingale calculator.

Strategy

    🤖 TOL LANGIT V10

    • EURUSD, GBPUSD, USDJPY, USDCAD, USDCHF.  trade using market orders with trend and power indicators
    • is an automated professional multi-currency expert advisor that designed for long-term profitable trading. The EA continuously controls price movements and makes accurate trades based on market patterns, trend and technical indicators. The EA contains a flexible news filter, high spread protection, separate time and days trading filters and allows to work with automatic and fixed trading lots. Each EA trade is covered by stop loss and take profit levels. The EA does not use grid, martingale, arbitrage and other dangerous strategies
    • Smart grid mode so instead of SL the Ea will use smart grid with additional orders placed at different levels.
    • logic of grid mode give you profit or at least breakeven instead of standard stop loss. In this mode Ea recover negative price direction.
    • For each pair used own optimized distances, first orders 10 - 30 pips, next orders 45 - 65 pips. Max orders set max value 15.

    Periods = input(title="ATR Period", type=input.integer, defval=10)
    src = input(hl2, title="Source")
    Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)
    changeATR= input(title="Change ATR Calculation Method ?", type=input.bool, defval=true)
    showsignals = input(title="Show Buy/Sell Signals ?", type=input.bool, defval=true)
    highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)
    atr2 = sma(tr, Periods)
    atr= changeATR ? atr(Periods) : atr2
    up=src-(Multiplier*atr)
    up1 = nz(up[1],up)
    up := close[1] > up1 ? max(up,up1) : up
    dn=src+(Multiplier*atr)
    dn1 = nz(dn[1], dn)
    dn := close[1] < dn1 ? min(dn, dn1) : dn
    trend = 1
    trend := nz(trend[1], trend)
    trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trend
    upPlot = plot(trend == 1 ? up : na, title="Up Trend", style=plot.style_linebr, linewidth=2, color=color.green)
    buySignal = trend == 1 and trend[1] == -1
    plotshape(buySignal ? up : na, title="UpTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)
    plotshape(buySignal and showsignals ? up : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)
    dnPlot = plot(trend == 1 ? na : dn, title="Down Trend", style=plot.style_linebr, linewidth=2, color=color.red)
    sellSignal = trend == -1 and trend[1] == 1
    plotshape(sellSignal ? dn : na, title="DownTrend Begins", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)
    plotshape(sellSignal and showsignals ? dn : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)
    mPlot = plot(ohlc4, title="", style=plot.style_circles, linewidth=0)
    longFillColor = highlighting ? (trend == 1 ? color.green : color.white) : color.white
    shortFillColor = highlighting ? (trend == -1 ? color.red : color.white) : color.white
    fill(mPlot, upPlot, title="UpTrend Highligter", color=longFillColor)
    fill(mPlot, dnPlot, title="DownTrend Highligter", color=shortFillColor)
    alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")
    alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")
    changeCond = trend != trend[1]
    alertcondition(changeCond, title="SuperTrend Direction Change", message="SuperTrend has changed direction!")


    TOL LANGIT - 2021 - 2023








    🤖 Contact Info

    MQL Profile 

    https://www.mql5.com/en/users/adithyodw/seller

    Telegram Channel

    https://t.me/tol_langit

    Recommended Broker

    http://icmarkets.com/




    Share it with friends: