- Search Crypto Craft
-
Beerrun replied Apr 7, 2020Haha called out!
Yeah buddy I've been working on it yesterday and today 
I am very glad there is interest. Currently I have finished the parameter interpreter, so it can look like the most recent picture I showed, using ...StackMe!
-
Beerrun replied Apr 7, 2020Here you go, line width options added and colours. The updating and lag are fixed, it will update itself continually.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 7, 2020I wonder why your pc won’t let you open it. I can read it on my phone too.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 7, 2020I just open the file by either double clicking the file in its folder (not in mt4 terminal) or by opening editor first then open file. Notepad will also work as long as the mt4 terminal is restarted, it will auto-compile.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 7, 2020Na I had tired, half answer. BlueRain is right. I believe in you
Just open the program in meta editor and change that one part of that one line: for(i=Bars Make it look like: for(i=limit The same as you type text into these reply boxes. And ...I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 6, 2020The main for loop’s first iteration is over a bar that does not exist, probably is causing the ram heaviness you describe. Should be: i=Bars-1
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 6, 2020Your code tries to close a pending order; a buylimit is a pending order url When triggered the pending order is replaced with a market order. Change BUYLIMIT to BUY or 0
Is there an EA to close trades after a certain amount of time?
-
Beerrun replied Apr 6, 2020I wish I did, I think that is a good idea to pursue. Until then I just pm with people a lot. Error 130 = Incorrect Stoploss or Takeprofit. The values you are sending for either the sl or tp are not what mt4 is expecting. A good fix is to normalize ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Gladly buddy. I enjoy helping people learn coding or answer info about it so anyone ask away.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020start is what actually runs the program code. MQL programs are event based so every time a new tick (event) comes in, mt4 automatically calls start() and runs your code. start() is tick based. In an indicator start runs immediately after the ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Thanks man I hope so, but I tend to come across rough sometimes haha
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Okay so the biggest part of the problem is that the iCustom calls are declared globally and the values not updated during run-time. Meaning that they are only given 1 value when they are initialized and it never changes after that. So if the ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020You can change the magic number if you want but its purpose is to serve as an arbitrary trade filter. So usually when I separate my longs and shorts based on one program, I give longs magic number of 101 and shorts magic number of 99. If using ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Try adding print statements anywhere you think there is an logic error, a simple form of debugging. Perhaps the values are different than what you are expecting and that is causing it to not close positions. But I am looking now.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020To make it more flexible, you can make the suffix an input variable and input the suffix when you load the indicator. Something like: input string suffix; Leave it blank and then if there is no suffix you do not need to input anything.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Sure thing buddy, give me some time though, I have some errands to run. But it would help if you can report any errors you see in the experts tab of your terminal. I'm sorry, I assumed you were using the program on the same chart you needed the ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020It places an order by price input. Input the price and if it reaches it then it will trigger a market order. The download is few posts back now, also in other thread last year.
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Yes the changing timeframes can reload a program. In or before deinit() you can GetLastError() to check the uninit code url and then have your code not re-initialize itself: if(GetLastError()==3){prevent deinit/init} If you're using the program on ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Of course, thank you for the discourse. Been missing conversation here lately with all that's going on. Yes a max spread is a good idea. I guess just haven't because I am there when the script is working. I use it to help control impulses, no ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020Yes sir. I guess I should also say that I don't trade manually per se. I will be there when orders are placed, and I might load a script to do math quickly, check conditions and if good then place the order but I do not manually place orders, so ...
I will code your EAs and Indicators for no charge