I have a few changes in existing EA:
Point 1 - An function in EA does not work Reactivation of an order - should be fixed.
Point 2 actuall lot calculation should be changed and add two other posibilies to calculate lots.
thats it
Point 1
if there is
an Order by other EA or manual opend - this order will be managed by Hedge EA.
If you want
to test – just use following sets
UseOriginal=false
CloseBasis=false
OpenPending=true
UseReact=true
If first Pending
is closed in Profit – then should opens
a Reactivation, if Price goes Xpips better than entry of first Pending and than
place again an Pending on original Price of first pending - The new
pending with does just have new TP and same Lots
After this
second Pending is closed in Profit – EA should also close the refered basis
order.
If Basis is
closed bevor second pending – with basis should be closed second pending. Right
now it is also working like this with first pending – same should be happend
with second pending.
This function should work but does
not work – this is to fix
Parameters of function Reactivation
right are
input int
ReactEnter=10;//Reactivation Enter in pips
input
int
ReactTP=5;//Reactivation TP in pips
Reactivation of pending does not working. If pending is executed in profit- and
goes xpips better than place second Pending, pending should be Placed again.
Same lots as pending before only NEW TP.
If the reactivation Pending is closed – than reffered Basis has also to be to
close.
But If
original basis will close also Reactivation Pending must be deleted. As also do
normal Pending. If Basis is closing refferd Pendings must be deleted.
Point two -
I want to change actuall Pending lots calculation - and add two other
possibilities to definate lots for the Pendings.
Right now lots are calculated on
basis of loss of basis order from entry price till hiddenSL . now if basis order
goes xpips in minus, the minus till hiddenSL ist the calculation for Lots for
pending order right now. There should be changed nothing only the amount should be encreast. Loss should hiddenSL pips and TP pips inclouded + an amount which I will be definating in new Paramters in %
Now I just want
'That loss calculation goes till Pips TP includ and also having
an Plus as overtop – percent of this calulated loss on TOP.
New paramter is – Top on loss definated with percent 0.5 Perdent or 5.0
perdent
In actual version of Hedge EA - Basis order with loss was closed at
hiddenSL - So calculation of loss of basis goes further and should go TP of Pending
- Plus from this sum Xpercent.
So from entry Basis till hidden SL – amount - Plus
Loss from HidenSL to TP – amount - Plus
An Overtop - percent of this amount 1% of hidden SL + Loss hidden till TP
------------------------------------
Loss Resoult must be covered from entry Basis till Pips TP – This clculation
is done right now till hiddenSL
So definate Loss is – Loss of Basis – till hidden SL – from hiddenSL to
PipsTP and of this result overtop definated part as percent. Example 0.5%
If Amont of loss is definated – lots must be calculated that if pending is
opend at hiddenSL till pipsTP must loss covered. This is EA doing right
now only with los still hiddenSL –
2a- I want just to definaet the lots for the opening pending wiht an
multipler. So if basis is 0.01 lots and multipler is 2 EA does Open 0.02
lots. Second possibility
2b. Dividation - If basis is 2 lots and I have a dvidation of 2 - thant on
pending is opend 1 lot - Third possibility
thats it
Ähnliche Aufträge
Looking to buy an EA which is good, profitable and takes many trades, good for IB broker comissions, Any strategy or martingale is fine, send me a demo license file, I will backtest and purchase immediately if my team like it
Hi, Before ordering, I want to verify the quality of your ICT/SMC logic. Do you have an existing indicator or strategy (your own work) that I can test on TradingView? If yes, please provide: 1. A demo (invite-only script or video) 2. Proof it is NON-repainting (explained clearly) 3. Live or replay demonstration (not static screenshots) Specifically I want to see: * Clean swing structure (no consecutive highs/lows) *
Hi guys looking for a buy sell indicator not necessarily for trading solely based on it but more for getting an indication of market dynamic and direction. If you believe you have or have a good strategy or idea for such an indicator drop a message. I will want to test it before making deposit as this is such an open order woth so many options. Waiting to hear from you. Flexible with price
Looking to work woth manualtraders who have a proved existing strategy. To be clear, this is not a request to develop or design a new strategy. If you already trading and have strategy that is proven, consistent, and production-ready, with at least 6 months of history performance I’m open to reviewing it immediately. Please apply only if you meet all the requirements below. Submissions without a proper introduction
Hello, I am looking for an Expert Advisor (EA) that focuses on account preservation and consistent growth , rather than aggressive or risky strategies. My requirements are: Target: at least ~1% weekly return Strategy: low-risk, controlled drawdown Must NOT use martingale or grid systems that can blow the account Prefer quality trades over quantity like 100–200 trades per day Consistency is more important than high
Hello coders ,I am looking for a good already established MT5 EA ,that doesnt blow account, with maximum 10 percent drowdown,I need to backtest by myself,after that i select the developer
I need a trading bot (Expert Advisor) that can send alerts to mobile, Telegram, and the MT5 desktop platform. The bot should work as a market scanner for all symbols available in my MetaTrader 5 Market Watch. It must analyze multiple indicators and convert their signals into a point-based scoring system, then send alerts based on those scores. Requirements: Send notifications to: Mobile (push notifications) Telegram
Project Overview I am looking for a high-level Algorithmic Trader / Developer to build a sophisticated, fully automated scalping system for the Nasdaq-100 Future (NQ) . The system must integrate institutional order flow logic with market structure analysis. The core logic must be written in Python , acting as a central hub that bridges ATAS (as the primary data source for Order Flow) and MetaTrader 5 (as the
I have recently used an ea that was absolutely perfect however, I have since found it was not a safe source. I use IC Markets raw spread ECN accounts and the bot I would like is a gold + btc trader (other forex are also fine) that trades extremely high lots, whilst trading extremely high frequency. I am happy to take a bot that already exists if this has an account I can view read only for true results
//@version=5 strategy("Simple SMC Bot", overlay=true) // Detect highs/lows hh = ta.highest(high, 10) ll = ta.lowest(low, 10) // Break of structure bullishBOS = close > hh[1] bearishBOS = close < ll[1] // Entry logic if bullishBOS strategy.entry("Buy", strategy.long) if bearishBOS strategy.entry("Sell", strategy.short) // Stop loss & take profit strategy.exit("Exit Buy", from_entry="Buy", loss=50, profit=100)