- Search Crypto Craft
-
Beerrun replied Oct 7, 2019Try this out and let me know if any errors
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 7, 2019This is their profile page url He knows a large amount of existing programs, if there is a reliable existing version of what you’re looking for he might know
Can someone check and test this Trade Manager EA for me?
-
Beerrun replied Oct 7, 2019I think that’s because TimeCurrent() returns the time of the last received tick or quote and Time[0] references the period adjusted bar time opening.
Best Way to Code Trade Once per Bar at Open on MT4?
-
Beerrun replied Oct 7, 2019The reason your EA is firing off trades when its loaded is because you have BarsCount=0. Make barscount=bars on the first run. Also perhaps use a function call rather than array index. But I am interested to see how your timecurrent method works out. ...
Best Way to Code Trade Once per Bar at Open on MT4?
-
Beerrun replied Oct 7, 2019This will return when EA is loaded, preventing a signal from old bars on the chart. But I don't see why your method wouldn't work as well. int start(){ ...your every tick (not bar dependent) code here... datetime new=iTime(NULL,0,0); //or Time[0] ...
Best Way to Code Trade Once per Bar at Open on MT4?
-
Beerrun replied Oct 7, 2019The most recent upload is a script and it has the option to be limited to the chart symbol or all symbols, the default is set for all symbols. Let me know if you find errors Check with mntiwana, they know many existing programs
Can someone check and test this Trade Manager EA for me?
-
Beerrun replied Oct 6, 2019You could try this one url the latest version is at the bottom. It does what you want except it’s not hidden
Complete Trade Manager Inputs
-
Beerrun replied Oct 6, 2019Yes it can potentially repaint; that is part of how the indicator works, not my design, I simply added multi-colours and other features by member request. This is why I included the Cycle line, the vertical line that shows the Half Cycle period; ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 5, 2019Just copy/paste what I did in the first one to this new one, from input int periode through input _corner corner
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 5, 2019In the function SetIndexStyle(index,type,style,width,colour) width is the 4th parameter. In MetaEditor you can highlight any code and hit F1 to pull up the MQL4 reference documentation about the highlighted code; its very helpful. I have added a ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 4, 2019Options 1,3 done. The indicator is based around timeframes so modifying that might not be a good idea, or maybe i misunderstand you.
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 4, 2019Just a quick glance but if you change your loops check from i>=0 to i>0 it will not check the current bar
I will code your EAs and Indicators for no charge
-
Beerrun replied Oct 4, 2019Give this a try and let me know if any errors. Added an option to restrict the script to the current chart symbol, default set to no.
Can someone check and test this Trade Manager EA for me?
-
Beerrun replied Oct 4, 2019That's a nice way to use it, good thinking. Also you could use it your way and then reload it again to use it the original way together, having a 50 cross and crosses out of os/ob.
Multi S&R
-
Beerrun replied Oct 4, 2019Version 2.0 has been uploaded here and on the main post; it has been rewritten for speed.
Multi S&R
-
Beerrun replied Oct 3, 2019I’ll get to it soon, same fix for stesy too
Can someone check and test this Trade Manager EA for me?