I need an Ladder EA that has inputs where I can set the following:
All orders are limit orders
INPUTS
Starting Criteria:
Input: Initial Trade Direction - Choose if Buys/Sells or both (Buy only) (Sell only) (Both directions)
Input: If no bids are picked up in x time, then recast ladder at current price (x mins)
Input: Choose Quantity to risk (Lot size) or ($ amount)
Buy grid trading fields:
Input: Choose distance where ladder should start from current price ($x.xx)
Input: How many buys on ladder? (39) (ie - 39 buy orders spaced evenly at $x.xx). (39 will be the max as API will not allow more that 39+39 in one minute)
Input: Spacing between each buy order on ladder ($x.xx) or (ATR Value - from 1 min, 2 min, 3 min, 4 min, 5 min, 10 min, 15min, 30m, 1 hour, 2hr, 4hr,12hr, 1 day, 2 day, 3 day, 4 day ATR'S)
Input: Choose how many lots/$ to have for each buy order in ladder (ie - 1;1;2;3;3;4;5;6 etc). (Set by coefficient of 10000
Take profit panel:
Input: TP on one limit order? (Yes/No)
If no - close by Sell Ladder
Input: Sell Ladder: How many bids filled on longs before sell ladder activates? ($x.xx)
Once Sell ladder activated - place sell ladder from current averaged price upwards according to sell ladder distance.
If more bids on longs are collected from ladder before sell ladder closes all open trades, and average price moves down, cancel sell ladder and replace at current averaged entry price for every new bid filled.
Input: for TP by grid: Sell Ladder: Spacing between each buy order on ladder ($x.xx) or (ATR Value - from 1 min, 2 min, 3 min, 4 min, 5 min, 10 min, 15min, 30m, 1 hour, 2hr, 4hr,12hr, 1 day, 2 day, 3 day, 4 day ATR’S)
Input: Set tp ladder to increasing/decreasing/flat according to how much the current trade is..by scale coefficient of 10000
Input: SL? (Yes/No)
Input: If SL, Place SL when passing ladder by ($x.xx)
————————————
Additional Notes:
When the user chooses Initial trade direction = Sell only… then the above instructions are reversed for sells instead of longs.
When the user chooses Both directions - then have both a long buy ladder and short sell ladder at the same time, and add the TP ladder to overlay on top of existing ladders to close the open trades
Benzer siparişler
This may be a weird request but if anyone has an EA that is actually consistently profitable I want to buy a copy of the source code from you. Ideally trades a lot, I'm sure theres a coder out there who has made a profitable EA, I want to backtest if you have, I have been trying to code a few on my own with no success as I'm not yet good at coding. In the mean time I need something profitable. bonus points if it
// Simple EMA Bot input int FastEMA = 9; input int SlowEMA = 21; void OnTick() { double fast = iMA(NULL,0,FastEMA,0,MODE_EMA,PRICE_CLOSE,0); double slow = iMA(NULL,0,SlowEMA,0,MODE_EMA,PRICE_CLOSE,0); if(fast > slow) { if(PositionsTotal()==0) OrderSend(Symbol(),OP_BUY,0.01,Ask,10,0,0); } if(fast < slow) { if(PositionsTotal()==0) OrderSend(Symbol(),OP_SELL,0.01,Bid,10,0,0); } }
mport pandas as pd import numpy as np def detecter_tendance(data): # Code pour détecter la tendance pass def identifier_niveaux(data): # Code pour identifier les niveaux de support et de résistance pass def calculer_stop_loss(tendance, support, resistance): # Code pour calculer les stop loss pass def calculer_profils(tendance, support, resistance): # Code pour calculer les profils mport pandas as pd
I need modifications and restructuring of an existing MetaTrader 5 Expert Advisor (MQL5) . The current EA works with only one filter for trade entry. I need it redesigned to support 10 optional filters , with flexible configuration and improved Renko logic. I will provide the full .mq5 source code . The EA currently opens trades only when the selected filters agree in direction. 1) 10 Optional Filters System The EA
Seeking an experienced quantitative developer to build a custom, AI-powered Telegram signal parsing and trade execution system. The goal is to automatically copy trading signals from multiple Telegram providers to MetaTrader 5 with ultra-low latency and intelligent signal interpretation. Body: Looking for an experienced developer to build a custom signal copier system. Skills Required: - MQL5 / MetaTrader 5
I need a hft bot that works well on live market. I have tested some bot and they only perform on demo market. If you have any one that is profitable in the live market, pls send a message. I will need to test it before paying. Pls make sure the bot is profitable in LIVE MARKET
looking for create ea for mt4 or mt5 which for gold which open buy and sell stop order on previous day high and previous day low , after enter the trade it will trail aggressively. need optimization and back test report. have selectable profiles for gold, forex and index. selection for trade based on fixed lot or equity base
I am looking to purchase a ready-made, proven Multi-Currency Expert Advisor MT5 (EA) from a developer/vendor. I do not have a custom strategy yet — I want to acquire a completed EA product that already trades multiple currency pairs (ideally with configurable risk management and trade management features). This is a purchase (not a custom build). What I Want ✅ EA Must Trade Multiple Instruments (Portfolio) Trades
I want a bot like the one uploaded in the video.Urgently and as soon as possible, I need a professional who can create something like what I uploaded in the video
I need an Expert Advisor based on AOX signals. It must have check and handling of trade operations errors. The main criteria for opening and closing a position: * moving average direction *the price is higher than the previous bar. Trade lots is an input parameter