- Search Crypto Craft
-
Beerrun replied Apr 5, 2020Yes sir, it does what you are describing about an EA placing a market order at a certain price. You had the correct way to hide a pending order. I just couldn't resist opening my mouth for trivial info

I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020The script does not place a pending order... Do you understand?
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020A script is exactly the same as ea except for folder location and default duration on chart. You can delay placing orders in a script just like in an ea, which an ea also requires the user to place the program on the chart. I'd rather have an script ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020You're missing my point, the action of using an EA to place a market order can be done exactly the same using a script. I am trying to correct misinformation that a script cannot do things an EA can do. Probably trivial but more knowledge is more ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Apr 5, 2020An ea and script are essentially the same thing. Using an ea to “hold” a pending order can be done exactly the same on a script. A normal pending order gets turned into a market order when it is triggered anyways.
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 19, 2020Yeah that part you are asking about still needs to be implemented.
StackMe!
-
Beerrun replied Mar 19, 2020Make sure you check the examples carefully. To set a rsi level signal for example: apply the indicator with the settings of source=RSI and base = value
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 19, 2020Try this out, it was made for requests like this: url
I will code your EAs and Indicators for no charge
-
Beerrun replied Mar 19, 2020I was thinking of something like this: image Just have to find time.
StackMe!
-
Beerrun replied Mar 19, 2020Off the top of my head I believe the reason they aren't in there is because they use additional parameters and I had not yet found a good way to consolidate them into more input options. Yes I totally would like to do that. I was actually beginning ...
StackMe!
-
Beerrun replied Mar 19, 2020Thank you my friend. I have been holding onto this idea for a while now; I was unsure if it would prove to be as helpful as I believed it to be.
StackMe!
-
StackMe!
Started Mar 19, 2020|Platform Tech|16 replies
Hello all! Its me again, love it or hate it. Lately I have been having some big changes in my ...
-
Beerrun replied Dec 23, 2019Normally a script program will unload itself after it’s code has run; this has the option to stay loaded on the chart. BE+ in Points: how many points over breakeven you want the stoploss moved when breakeven happens. Ex: your long order is open at ...
Breakeven + X pips Script
-
Beerrun replied Dec 15, 2019Maybe set this to false if you haven’t already since in deinit: if (DeleteLines) ObjectDelete("EntryLine"); if (DeleteLines) ObjectDelete("StopLossLine"); but it looks like code in deinit might be missing {} to go with the delete lines input
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 13, 2019An edited init function: int init(){ if(EntryLevel-StopLossLevel==0){Alert("Entry and Stop-Loss levels should be different and non-zero.");return(-1);} if(EntryLevel==0&&StopLossLevel==0){ Print(_Symbol+": Entry and Stop-Loss levels not given. Using ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 12, 2019The file is likely in the wrong location, would be good to double check.
Error: is not expert and cannot be executed
-
Beerrun replied Dec 11, 2019Are you inserting EURUSD or “EURUSD”? The quotations are needed.
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 11, 2019Checking the return value of ObjectCreate, possible an object with that name already exists if(ObjectCreate(...)) else Print(“ObjectCreate Error!”);
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 8, 2019I am sorry friend but I have no experience with mql5
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 5, 2019Theres no way to know what is your trade manager by that picture, need the .mq4 file. You can add files to a post, use the option “upload from device”
I will code your EAs and Indicators for no charge