Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
NoDemand4:=If(H>ref(H,-1) and L>=ref(L,-1) and (H-L)>ref((H-L),-1) and C=((H-L)*0.5)+L and C>ref(C,+1) and H>=ref(H,+1) and V<ref(V,-1) and V<ref(V,-2) and NoDemand2=0,1,0);
NoSupply4:=If(L<ref(L,-1) and H<=ref(H,-1) and (H-L)>ref((H-L),-1) and C=((H-L)*0.5)+L and C<ref(C,+1) and L<=ref(L,+1) and V<ref(V,-1) and V<ref(V,-2) and NoSupply2=0,1,0);
I will share the EA once it's done. (I'm gonna sell it for $2000. Free only to the person who can help me write the code.)
Thanks
So you're great plan is to take two free EA's that you probably found here and 'merge' them together and sell it for 2K a pop? You've got some nerve buddy! Maybe if you're really lucky one of the two guys that actually gave up their time, effort and knowledge for free will offer to do it for you.
Oh but wait! If the code is 'messed up' then the EA's are mostly likely commercial EA's that have been decompiled. Is that it? Moron!!!
MT-4- Please help me, I want make a file intersection DMI + and DMI - .I want have the signal in moment of move DMI+ and DMI- without ADX. I do care about it. I write this below but please create for this the file to move it to MF4.
//+------------------------------------------------------------------+
//| ADXcross EXPERT |
//| Perky_z |
//| |
//+------------------------------------------------------------------+
#property copyright "Perky_z@yahoo.com "
#property link "http://groups.yahoo.com/group/MetaTrader_Experts_and_Indicators/"
//+--------------------------------------------------------------------------------------------------+
//| Alerts in hand with ADXcrosses Indicator they dont need to be run together |
//+--------------------------------------------------------------------------------------------------+
// Alerts on cross of + and - DI lines
// I use it on 15 min charts
// though looks good on any time frame
// use other indicators to confirm this trigger tho
//---- input parameters
double b4plusdi,b4minusdi,nowplusdi,nowminusdi;
//----
//---- indicators
In this part of code change period how You want (14 change for 4 in every line) and this should to work in this scal which You situate the diagram.
b4plusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_PLUSDI,1) ;
nowplusdi=iADX(NULL,0,14,PRICE_CLOSE,MODE_PLUSDI,0 );
This is closing partial lots BUT...not exactly doing what I expected.
I can't figure out what it IS doing but seems to close 1 lot when price is NOT where i want it to.
Maybe you can see the issue here.
should close 1 lot when there is a BUY and the price goes .00071(just a random number i'm testing on a 1 minute chart)
or close 1 lot when there is a SELL and price goes .00071 down
using a 5 digit broker by the way. There is only 1 trade ever open and only by this EA, so no scrolling through orders
THANKS for HELP!
if (IsConnected() && IsTradeAllowed()) while (IsTradeContextBusy()) Sleep(75);
if (OrdersTotal()>0) {OrderSelect(0, SELECT_BY_POS,MODE_TRADES);
RefreshRates();
if (Bid >= (OrderOpenPrice()+ (.00071)) && OrderLots() == 2 && (OrderType() == OP_BUY)) {
OrderClose(OrderTicket(),1,Ask,10,R ed); }
if (Ask <= (OrderOpenPrice()- (.00071)) && OrderLots() == 2 && (OrderType() == OP_SELL)) {
OrderClose(OrderTicket(),1,Bid,10,B lue); }}
__________________ www.LiveTeamTrading.com
The FIRST LIVE Team trading Network Community for FOREX TRADERS! Ask me about Getting an Invite!
Is it possible to make a code to close a transaction at breakeven (profit=0), when a transaction has (once) have positive profit, but still below the broker's stoplevel (trailing is not touched yet)?
For a 10Point StopLevel broker, trailing system can only work if the profit has reached at least 10 Point.
Many times I see a transaction has gone positive only to 5 or 8 pips, then goes back to hit it's SL.
So I'm thinking about this, but don't know how to do it.
How to make a breakeven code for an EA, something like Trailing Stop, but works below minimum broker's StopLevel?