1. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

New EA LOW DD EA

Discussion in 'Expert Advisor atau Robot Forex' started by tanaka akiko, 26 Nov 2022.

  1. Serame

    Serame New Member

    Equity
    Credit
    Ref Point
    Mr. TANAKA would you please make an EA with the following indicators...as they are very good interms of signals and make trend predictions;-
     

    Attached Files:

  2. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
    It is obvious that FL11 repaints.
    Waste of time with these indicators.
     
  3. Krkbtc

    Krkbtc Member Credit Hunter

    Equity
    Credit
    Ref Point

    Confluence5 also Repaint
    Waste of time with these indicators.

    Dear Philippe do you have any Non Repaint Indicators can you Please sheare
     
    • Like Like x 1
  4. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
    If you need i can do this video in english or spanish
     
    • Friendly Friendly x 1
  5. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
    MR Tanaka, possible to make an EA using this indicator?
     
  6. Serame

    Serame New Member

    Equity
    Credit
    Ref Point

    Mr Philippe can you help me convert the following EA verser versa:- BUY=SELL and SELL=BUY. Unfortunately I do not have Mql4 for the EA, if you can make it possible please assist.. That is the behaviour of the EA on a Photo attached
     

    Attached Files:

    Last edited: 05 Sep 2024 at 00:00
    • Informative Informative x 1
  7. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Sorry, you must ask to M Tanaka.
     
  8. Serame

    Serame New Member

    Equity
    Credit
    Ref Point
    This is the behaviour of the

    MR.TANAKA Would you please help on this crisis?????¡¡
     
  9. tanaka akiko

    tanaka akiko Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    It is EA. ex4 file. So I can not modify.
     
  10. tanaka akiko

    tanaka akiko Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Completed.
     

    Attached Files:

    • Winner Winner x 1
    • Friendly Friendly x 1
  11. Serame

    Serame New Member

    Equity
    Credit
    Ref Point
    // Moving Averages
    shortMA = ta.sma(close, 20)
    longMA = ta.sma(close, 50)
    // RSI
    rsi = ta.rsi(close, 14)
    // Outside Bar Logic (reversed)
    isOutsideBar = high > high[1] and low < low[1]
    if (isOutsideBar)
    if (close < open and close < shortMA and shortMA < longMA and rsi > 70)
    strategy.entry("OutBarLE", strategy.long, qty=1, comment="OutBarLE") // Enter Long when original would enter Short
    if (close > open and close > shortMA and shortMA > longMA and rsi < 30)
    strategy.entry("OutBarSE", strategy.short, qty=1, comment="OutBarSE") // Enter Short when original would enter Long
    // Calculate Stop Loss and Target Profit for Long Positions
    longStopLoss = strategy.position_avg_price * (1 - stopLossPercent)
    longTargetProfit = strategy.position_avg_price * (1 + targetProfitPercent)
    // Calculate Stop Loss and Target Profit for Short Positions
    shortStopLoss = strategy.position_avg_price * (1 + stopLossPercent)
    shortTargetProfit = strategy.position_avg_price * (1 - targetProfitPercent)
    // Exit Conditions for Long Positions
    if (strategy.position_size > 0) // Long position
    strategy.exit("Take Profit/Stop Loss", "OutBarLE", stop=longStopLoss, limit=longTargetProfit)
    // Exit Conditions for Short Positions
    if (strategy.position_size < 0) // Short position
    strategy.exit("Take Profit/Stop Loss", "OutBarSE", stop=shortStopLoss, limit=shortTargetProfit)
    ```
    ### Explanation of the Strategy and Indicators
    1. **Opposite Entry Conditions**:
    - The strategy reverses the entry conditions. It enters long positions when the price closes lower than it opened and vice versa. Additionally, it checks if the short-term moving average is below the long-term moving average for long entries and above for short entries.
    2. **Indicators**:
    - **Moving Averages (MA)**:
    - A 20-period and a 50-period simple moving average are used to confirm the trend direction. Long entries are confirmed if the short MA is below the long MA, and short entries are confirmed if the short MA is above the long MA.
    - **Relative Strength Index (RSI)**:
    - An RSI with a 14-period setting is used. Long entries are confirmed if the RSI is below 30 (indicating oversold conditions), and short entries are confirmed if the RSI is above 70 (indicating overbought condition)

    Mr.Tanaka can help create an EA using the above strategy please????!!
     
  12. tanaka akiko

    tanaka akiko Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point

    I am testing but there is no entry with this condition.
    If I remove RSI logic, it has entry..
    What is TF and pair with your test ?
     
  13. Krkbtc

    Krkbtc Member Credit Hunter

    Equity
    Credit
    Ref Point
    Dear Philippe

    Where is the INDICATOR can you share the the indicator
     
  14. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
    I don't understand. The author has removed the ea on mql5:cry:
     
    • Friendly Friendly x 1
  15. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point
  16. tinek36

    tinek36 Member Credit Hunter

    Equity
    Credit
    Ref Point
    same but less clutter ... easy to read
    not sure how ... on sideways go grid and follow the trend
     

    Attached Files:

    Last edited: 05 Sep 2024 at 15:39
  17. Serame

    Serame New Member

    Equity
    Credit
    Ref Point
    M15 M30 H1 BTCUSD and XAUUSD
     
  18. Krkbtc

    Krkbtc Member Credit Hunter

    Equity
    Credit
    Ref Point
  19. tinek36

    tinek36 Member Credit Hunter

    Equity
    Credit
    Ref Point
    amplitude 12... same as halftred amplitude 12
    XAUUSDH1.png XAUUSDH1x.png
     

    Attached Files:

    • Friendly Friendly x 1
  20. philippe5

    philippe5 Member Credit Hunter

    Equity
    Credit
    Ref Point

Share This Page