- Search Crypto Craft
-
sangmane replied May 25, 2010thank you. yes, there is a way to find out where the script dropped on chart

Help with pending buy stop and sell stop scripts
-
sangmane replied May 25, 2010can you post your script that can move sl/tp to where your mouse point to?
Help with pending buy stop and sell stop scripts
-
sangmane replied May 25, 2010have you checked this thread url ? as far as i know, using MT4, there is no way to find out at what price the mouse point to. my advice would be an ea instead of scripts, that monitoring the existence of a horizontal line, and then buy/sell ...
Help with pending buy stop and sell stop scripts
-
sangmane replied May 25, 2010Iamfx, I have visited Crucial Paradigm website, they have very attractive price. Anyway, I just registered with Commercial Network Services. It's been 6 hours after payment done, VPS still not ready
Is there a way to run EA with computer off?
-
sangmane replied May 24, 2010ronald, it is not affordable for me
the reason i 'm looking for vps is that to get the feeling how to interact with vps, forward testing my EA (demo account) without having to be online 24/7 so that it will save my internet bill. > $50 is very ...Is there a way to run EA with computer off?
-
sangmane replied May 24, 2010try using very big sl/tp, like 1000 point (in 5 digits it equals 100 pip). if you still get error 130 (invalid stop), chances are your broker uses "ECN style" order processing. if that is the case, try using sl/tp = 0 ...
please please help going mad
-
sangmane replied May 24, 2010good VPS with affordable price — can someone recommend some good VPS with an affordable monthly subscription fee?
Is there a way to run EA with computer off?
-
sangmane replied May 22, 2010The bolded code shown that you want to know when tick time equals to one second before the new bar open. Please note that the smallest time in MT4 (datetime) is one second. It doesn't recognize fraction of second. If there was a tick that come ...
MT4 - Time values in backtesting / detect end of bar
-
sangmane replied May 22, 2010pls check EA below. let me know if it works as you expected
Request for help and experience!
-
sangmane replied May 22, 2010you can use MathRound() example: round to the nearest 100th decimal = 0.01 double d0 = 0.01; //100th decimal double d1 = 0.14612; //value to be rounded up double d2 = MathRound(d1/d0)*d0;
My Function not working correctly
-
sangmane replied May 22, 2010See the correction inside your original code
My Function not working correctly
-
sangmane replied May 20, 2010well, it is more difficult than i thought before. especially the "button emulation". i found that Script isn't a good solution for your requirement. MT4 will remove script when you switch chart's time frame. i code it as expert advisor. because i ...
Code my order creation script.
-
sangmane replied May 20, 2010you better post your file (EA/Script) that contain all of the code.
can someone look at this statement
-
sangmane replied May 20, 2010It should not be too difficult. Notes for #1, there is no MT4 object for button that can be clicked to get action. The closest behaviour for clicking is dragging.
Code my order creation script.
-
sangmane replied May 19, 2010ok, i'm coding it right now ETA: indicator attached. i use arrow instead of alert. will add alert if you confirmed that the indi count the bars as you expected
Small help with the code to count up-bars and down-bars
-
sangmane replied May 19, 2010why wait until the close of last upbar1 and not after the close of downbar1?
Small help with the code to count up-bars and down-bars
-
sangmane replied May 19, 2010finally you showed up mate the tension was getting hotter...
I Have Zig Zag Non Repaint Indicator!! A Programmer Needed To Optimize It!
-
sangmane replied May 19, 2010you can try this code: void Function1() { static SignalLG,SignalSH; RefreshRates(); if(Bid>Low[1]-100*Point && Bid<High[1]+100*Point) //price within last bar range +/- 100 Point { SignalLG=True;SignalSH=True; marketorder(); } else { Print ("Market ...
problem with code - can some one look at this?
-
sangmane replied May 18, 2010Hi Fish, mq4 file -------------> compile ------> ex4 file ex4 file will be saved to the same folder as that mq4 file if it is an EA, normally it would be in experts folder indicator goes to experts/indicators script goes to experts/scripts to run ...
How to create an .EX4 file?