Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 1114
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
Why just for this, such a simple theory about the impossibility of winning without a prediction? I didn't say that... This amount of data is interesting in itself, there are 80 billion of them now. And the implications of this theory are many, in particular, the hopelessness of any martingale scheme, however twisted. And also other series, which are not based on predictions, but on very different signs, not related to the prediction.
If you open randomly, yes, expectation of profit is exactly equal minus spread. Signals are another matter, they may have their own expected payoff characterizing the quality of their forecasts. But it cannot be estimated, we can only take a sampling average, not expected value. And I think, I don't need to tell you how samples are created.
Do I understand you correctly, that you use statistical data in trading and select an appropriate MM to shift expected payoff in positive direction? I.e., a knowingly losing strategy may turn out to be profitable with certain mm and constant statistics processing?
Good afternoon! Looking for this tool in MT4 or MT5, but have not been able to find it. Can you advise if anyone has used it and knows it. Trader uses it 6:20 on this videohttps://www.youtube.com/watch?v=J6jRvSwQVs4
Good afternoon! Looking for this tool in MT4 or MT5, but have not been able to find it. Can you advise if anyone has used it and knows it. A trader uses it 6:20 on this videohttps://www.youtube.com/watch?v=J6jRvSwQVs4
Hello! Here is the situation:
There is an indicator that opens a currency pair chart under certain conditions and applies a template to it, with an EA. When I manually apply a template in the terminal,"Allow the EA to trade" is checked, but when the template is loaded programmatically, this option is disabled, is it possible to correct?
Hello, can you tell me how to calculate the losing orders going in a row? And with a profitable one, the account would go to zero. I invented something, but I don't have enough...
int LossOrders()
{
int oldticket;
ticket = 0;
for (i = OrdersHistoryTotal() - 1; i >= 0; i--)
{
if (OrderSelect (i, SELECT_BY_POS, MODE_HISTORY))
{
if (OrderSymbol() == Symbol() && OrderMagicNumber() == magic)
{
oldticket = OrderTicket();
if (oldticket > ticket)
{
ticket = ticket;
if(OrderProfit()<0)
{
orderloss++;
}else orderloss=0;
}
}
}
}
return(orderloss);
}
Here
{
int orderloss=0;
int total=OrdersHistoryTotal();
for(int i=0;i<total;i++)
{
if(!OrderSelect(i,SELECT_BY_POS,MODE_HISTORY))continue;
if(OrderMagicNumber()!=magic)continue;
if(OrderSymbol()!=Symbol())continue;
if(OrderProfit()<0)orderloss++;
else orderloss=0;
}
return(orderloss);
}
....