Hi everyone,
1. Please read through this project, i have tried to explain it in the simplest terms.
2. You should only apply for this just if you understand what i want.
3. I will not have time to explain anything because i am busy and i have simplified it.
4. If you understand it, then apply, if not please don't apply.
Expert Advisor
Trend and Entry Power
| | M5 | M15 | M30 | H1 | H4 | D1 |
| | Trend | Entry | Trend | Entry | Trend | Entry | Trend | Entry | Trend | Entry | Trend | Entry |
| EURUSD | | | | | | | | | | | | |
| GBPUSD | | | | | | | | | | | | |
| AUDUSD | | | | | | | | | | | | |
| NZDUSD | | | | | | | | | | | | |
| USDCAD | | | | | | | | | | | | |
| USDJPY | | | | | | | | | | | | |
| USDCHF | | | | | | | | | | | | |
Use the conditions below for each currency pair and timeframe above.
This Expert Advisor makes use of 15 candles or bars divided into 3 categories
Long_term = Bar14, Bar13, Bar12, Bar11, Bar10
Medium_term = Bar9, Bar8, Bar7, Bar6, Bar5
Short_term = Bar4, Bar3, Bar2, Bar1, Bar0
Trend Cells Logic:
If Long_term && Medium_term && Short_term condition are true, then trend cells are either color green or color red.
Long_term condition (Bar14 to Bar10)
1. From Bar14 to Bar10, identify bullish bars, then for each bullish bar, find the value of (Close – Open)
2. Add up all the values of (Close – Open) of each bullish bar from Bar14 to Bar10 = All bullish value
3. From Bar14 to Bar10, identify bearish bars, then for each bearish bar, find the value of (Open – Close)
4. Add up all the values of (Open– Close) of each bullish bar from Bar14 to Bar10 = All bearish value
5. Find the value of (All bullish – All bearish) = if positive, then color green, else color red. If zero, no color
Medium_term (Bar9 to Bar5)
1. Use same conditions as Long_term, but use Bar9 to Bar5
Short_term (Bar4 to Bar0)
1. Use same conditions as Long_term, but use Bar4 to Bar0
Trend Cells Color:
1. Trend cells = green color if Long_term = green && Medium_term = green && Short_term = green, else no color.
2. Trend cells = red color if Long_term = red && Medium_term = red && Short_term = red, else no color.
Entry Cells Color
Bullish
1. This logic only use Bar2, Bar1 and Bar0.
2. Entry cell = green if Bar1 is bearish && Bar0 is bullish && Bar0 High > Bar1 High
Or
3. Entry cell = green if Bar2 is bearish && Bar1 is bullish && Bar0 is bullish && Bar0 High > Bar1 High & Bar0 High > Bar2 High.
Bearish
1. This logic only use Bar2, Bar1 and Bar0.
2. Entry cell = red if Bar1 is bullish && Bar0 is bearish && Bar0 Low < Bar1 Low
Or
3. Entry cell = red if Bar2 is bullish && Bar1 is bearish && Bar0 is bearish && Bar0 Low> Bar1 Low & Bar0 Low > Bar2 Low
Open buy trade
If Trend cell = green color && entry cell = green for the same timeframe, then open a buy position for the currency pair.
Open sell trade
If Trend cell = red color && entry cell = red for the same timeframe, then open a sell position for the currency pair.
Others:
1. Take Profit Condition = Trailing profit
2. Stop Loss condition = Martingale
3. Pop-up notification for the currency pair and timeframe that opened a trade.
Benzer siparişler
i need someone that can make me an EA really easy with the martingala system?, I am looking for something that doesn't exceed 5 trades for the martingale, I think I did it, but it only works for propfirms, So i need to develop it on ninja trader I have identified a very very simple strategy but it only works on propfirms, with only two propfirm accounts, i absolutely need account A and account, And they have to open
Hi, do you have a proven EA for MT5, suitable for live accounts and prop firms, including the Brazilian market? I’m looking for ready, tested EAs. Can you send a backtest or demo? Please if you do have and can send me nacktest or demo you should Message me
Access and confidentiality restrictions: You will receive only a separately named copy of the Commander . Existing trading EAs, presets, account credentials, Telegram credentials and proprietary entry/exit code will not be shared. The Commander intelligence must be developed using: Defined signal/input interfaces Anonymized historical logs and replay data Mock EA signals and test harnesses Documented authority and
We are looking for an expert algorithmic trading developer to build a high-performance, fully automated Custom Expert Advisor (EA) or trading bot. The bot must integrate advanced Smart Money Concepts (SMC) , Inner Circle Trader (ICT) methodologies, and Volume Spread Analysis (VSA) with a high-frequency trading (HFT) style execution and scaling model. The core objective is to program a bot that identifies
Develop an Expert Advisor for MetaTrader 5 that manages existing positions. Features Automatically detect all open positions. Apply Break-Even after price reaches a configurable profit. Partial Close: Close X% of volume at the first target. Move Stop Loss to Break-Even. ATR Trailing Stop (optional). Magic Number filter. Comment filter. Symbol filter. Trading session filter. Retry mechanism for trade operations
Requirements Specification Here is an example of Requirements Specification for the development of the MACD Sample Expert Advisor, which is available in the MetaTrader 5 standard package. 1. The idea of the trading system is as follows : market entries are performed when MACD's main and signal lines intersect in the current trend direction . 2. Trend is determined based on the Exponential Moving Average with
""" Wick Reversal Strategy — core logic ===================================== Rules (as specified): - Timeframe: 15-minute candles - Entry: candle wick >= WICK_MULTIPLIER x body -> signal candle - long lower wick -> enter LONG at next candle's open - long upper wick -> enter SHORT at next candle's open - Exit: an opposite-direction wick candle forms while in a position - Stop-loss: just beyond the signal candle's
Hello, I want a simple bot for NinjaTrader8. I need a bot that operates automatically on Nasdaq (NQ/MNQ). Requirements: open buys and sells following a simple trend strategy, configurable stop loss and take profit, risk per trade of 1 to 2% of capital, if it loses 3% in a day, stop trading until the next day. Compatible with backtesting, delivery of the source code and the working bot in NinjaTrader 8. My initial
I'm looking for a skilled Python developer to help expand and improve an existing Python game. The project is already functional, and I need someone who can add new features, improve gameplay mechanics, optimize performance, and maintain clean, well-structured code. Experience with game development in Python is preferred
{ "strategy_name": "M5 EMA Scalper", "timeframe": "M5", "indicators": { "ema_fast": 20, "ema_slow": 50, "rsi": 14, "atr": 14 }, "entry_rules": { "buy": [ "EMA20 > EMA50", "Price closes above EMA20", "RSI > 55" ], "sell": [ "EMA20 < EMA50", "Price closes below EMA20", "RSI < 45" ] }, "risk_management": { "risk_per_trade": 1.0, "stop_loss_atr": 1.5, "take_profit_rr": 2.0