I want to automate trading based on the renko chart (MT5). Opening / closing trades on a schedule (without indicators).
I write myself, I have little experience. In this regard, I will be glad of any information on how to speed up the solution of the problem. Perhaps there are useful articles or ready-made examples.
Need help with automated trading (renko)
Share
marketeer
This has already been updated in a recent article.
arteinvolo
Done
antonimys
Such a question. Is it possible to create an Expert Advisor that would take information from a demo account? that is, the demo account is decisive, all settings are painted on the demo, and only final decisions are opened on the real world. Everything works well on the handbrake, I would like to automate this. Is this possible and is it worth it to offer to freelancers?)
gerbertx
By the way, there are renko indicators for mt4, implemented as offline charts.
And in mt5 there are no offline charts. How to implement such a renko indicator?
ya_programmer
of course there is
bas
double PrevBid;
double myRangeBars[1000];
void OnTick()
{
if (MathAbs(Bid-PrevBid) >= 0.0004)
{
PrevBid = Bid;
myRangeBars[1] = myRangeBars[0];
myRangeBars[0] = Bid;
}
// ... analysis of myrangebars [ ], order processing
}
m_a_sim
right here
12345werty
Anything on the case?”
here the question is not how to buy, but how to learn and make with your own hands.