[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 953
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
In my EA there are no hard and fast parameters, just sliders, stochastic, short term volatility, rate of trend increase and correlation with other currencies.
Of course, it is possible to simplify an EA, but it will be a different one. For example, we can take a pair of moving curves to determine the trend direction and use stochastics to work in the trend.
It is very simple and I can debug it, but I want something better.
Vinin, if I have the ability to immediately delete my erroneous posts from the forum,
I'm asking you to tell me how to do it.
If you have any tips on who to contact about genetic algorithms or know how to enter the forum thread on mechanical trading systems
(I tried to go there, but it has its own registration, and how to do this, I do not know),
I would be very grateful for any help.
Not here, but here. You gave the link through "your own", it's not available to others.
How do I generate real time data for a Japanese candlestick chart?
So that the chart shows, for example, not EURUSD, but EURUSD minus the average.
datetime time;
void start() {
int Total;
double
Sar_1,
Sar_0;
bool
Opn_B=false,
Opn_S=false;
//----------------------------------------------------------------------------------
// Торговые критерии
for(int i=OrdersTotal()-1;i>=0;i--)
if (OrderSelect(i,SELECT_BY_POS,MODE_TRADES)&&OrderSymbol()==Symbol()&&OrderType()>1)Total++;
if(Total!=0 || time==Time[1])return;
Sar_1=iSAR(NULL, 0, 0.03, 0.2, 1);
Sar_0=iSAR(NULL, 0, 0.03, 0.2, 0);
if (Sar_0 < Close[0] && Sar_1 > Close[1])
Opn_B=true;
if (Sar_0 > Close[0] && Sar_1 < Close[1])
Opn_S=true;
//-----------------------------------------------------------------------------
if (Opn_B)
{OrderSend(Symbol(),OP_BUY,Lot,Ask,0,0,0);time=Time[1];}
if (Opn_S)
{OrderSend(Symbol(),OP_SELL,Lot,Bid,0,0,0);time=Time[1];}
//----------------------------------------------------------------------------------
if (OrderType()==OP_BUY) {
if (Sar_0>Close[0])
OrderClose(OrderTicket(), Lot, 0, 0);
}
if (OrderType()==OP_SELL) {
if (Sar_0<Close[0])
OrderClose(OrderTicket(), Lot, 0, 0);
}
}
//-------------------------------------------------------------------------------------------
Colleagues, could you please suggest an article or link that discusses how to correctly interpret EA test results? Thank you!
http://wellforex.ru/index/kak_ocenivat_torgovye_sistemy/0-16
How about this?
T.H.C.:
...How about this?
Good day to all! Can someone tell me how to make a chart display the value of the Parabolic SAR indicator? Only not the current,
Or give me a link to something similar.