- Search Crypto Craft
-
Beerrun replied Apr 10, 2019You would need to have the .mq4 file
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2019At least you’re trying and putting in the effort

I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2019You need to change the drawing type in SetIndexStyle(); you have it set to lines not arrows. Then in the code you don’t assign a value to the buffer, so it won’t display. You need to assign a price value where buffer sets itself: ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2019MQL strictly limits file access to the files sub-folder. In order to write to a different path you would need to use Windows functions.
Anyone know how to access Expert Log files?
-
Beerrun replied Apr 4, 2019Yes it’s possible
IndicatorShortName(“ “);I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 3, 2019Try this out
I know you already have it but at least its in a relevant place here.Script Modification (Break Even)
-
Beerrun replied Apr 2, 2019Im sorry but I was wrong earlier. I just noticed you said it doesn't display proper values either. SessionBars goes into the loop as 0, which then I believe skips the for loop, for(ii=0;(ii<SessionBars);ii++){ Try moving your loop check and ii ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 2, 2019I think it is not breaking a loop. SessionBars will always equal zero on the first iteration: SessionBars = iBarShift(NULL,0,iTime(NULL,PERIOD_D1,0); The only thing that breaks the “ii” controller loop is if ii is less than session bars: ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 31, 2019Im working on an ea now where you input either m, b, or tr and the system adds illions to it
. It’s looking really profitable.Only profitable EAs (truly probality)
-
Beerrun replied Mar 29, 2019I would guess that most coders here are self taught, and discover coding features as they work through a project; I am and I’m still learning. I’m not good with classes/structures yet and don’t even know what the standard library has to offer, but ...
How do strings work in graphical objects?
-
Beerrun replied Mar 28, 2019This one will send the symbol data every 15 minutes. Run it as a script.
Convert MQ4 to EX4
-
Beerrun replied Mar 28, 2019Maybe this will work datetime currenttime=0; static datetime saved_candle_time=Time[0]; string loctime=0; int initsw=1; int OnInit(){ //--- indicator buffers mapping SetIndexBuffer(0,Up);SetIndexStyle(0,DRAW_ARROW,EMPTY,3);SetIndexArrow(0,233); ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 28, 2019It depends on the coding needs but, if it matters, changing the values of existing objects requires less function calls.
How do strings work in graphical objects?
-
Beerrun replied Mar 28, 2019Without really getting into your issue, I wanted to point out that objects are not overwritten. If an object with the same name already exists then the ObjectCreate command returns false and does nothing else. You would need to either delete the ...
How do strings work in graphical objects?
-
Beerrun replied Mar 28, 2019I just made it work, I’m not sure exactly what it can do. It will operate on the symbols you enter into the inputs but I don’t know about the time question; I didn’t test it long enough to find out. However it looks like it was coded to continuously ...
Convert MQ4 to EX4
-
Beerrun replied Mar 27, 2019Also, it has to be run as a script not an indicator or ea.
Convert MQ4 to EX4
-
Beerrun replied Mar 27, 2019It works correctly for me #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 clrGold string MultiMkts[4]={"EURUSD","GBPUSD","AUDUSD","USDCAD"}; double ExtMapBuffer[]; int init(){ ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 27, 2019Try this, a (-1) was missing from the symbols array loop initialization. You have probably been getting an “array out of range” error, which would stop your code at that place, allowing it to only work properly until the error. #property ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 27, 2019I tried to clean it up, but I am doing this on my phone at work so I might have missed something. The only real changes I did were to your loops. #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Gold int ...
I will code your EAs and Indicators for no charge