- Search Metals Mine
-
yousername replied Dec 21, 2017I reckon yours will survive next year and beyond
Verbal diarrhea matches trading skills?
-
yousername replied Dec 20, 2017BUY 0X1 (0 = sell limit, 1 = buy limit) SELL 1X0 (1 = sell limit, 0 = buy limit)
Flexy Grid EA (Grid Trading)
-
Linear Regression Slope, Linear Regression MA and Band
Started Dec 19, 2017|Platform Tech|4 replies
Here I want to share indis that I made. Linear regression slope tells you the slope of the ...
-
yousername replied Dec 19, 2017feel free to let me know your idea perhaps it's a good idea to be implemented. Thanks

Flexy Grid EA (Grid Trading)
-
yousername replied Dec 14, 2017One more thing, you have to learn how to use the FG command. video
Flexy Grid EA (Grid Trading)
-
yousername replied Dec 14, 2017Try place the LIB and .JAR into FILES folder
Flexy Grid EA (Grid Trading)
-
yousername replied Dec 14, 2017Assuming you buy with style 111, all the order and trade will be buy. with the same assumption as above, for style 101, the middle part of the grid will be a sell trade (opposite of buy), while the other pending order will be a buy pending order. ...
Flexy Grid EA (Grid Trading)
-
yousername replied Dec 14, 2017Here you go bro. Near the top EA input, you will find DST true or false. By default it's false. You should see a correct time now in the news.
Flexy Grid EA (Grid Trading)
-
yousername replied Oct 1, 2017Wait, i just notice the backtest does read my input when I clicked A, it printed A. However when I click F12, the scroll to the right doesn't work in the backtest. I guess that particular function is not enable/available for backtest.
MQL4 Programming
-
yousername replied Sep 27, 2017The issue is probably the MT4 doesn't allow OnChartEvent() running on the Backtest. That mean it won't allow input from your peripheral i.e. mouse click or keyboard click through OnChartEvent()
MQL4 Programming
-
yousername replied Sep 26, 2017#import "user32.dll" void keybd_event(int bVk, int bScan, int dwFlags,int dwExtraInfo); int SendInput(int nInputs,int pInputs,int cbSize); string GetLastError(); #import #define KEYEVENTF_KEYUP 0x0002 //--- key is released (not pressed) void ...
MQL4 Programming
-
yousername replied Sep 26, 2017What does F12 do on the MT4? Assuming you assigned a XYZ() function to F12 button. Therefore when you press S, you should call XYZ() method 5x
MQL4 Programming
-
yousername replied Sep 23, 2017This indi is to support the Price Action Analysis. It doesn't tell you what to do, it gives you insight about the market movement, market structure. Also you don't have to strained your eyes to look for little things i.e. divergence/convergence. The ...
ZigCharm
-
yousername replied Sep 23, 2017if(val1 > 0) { v1[i] = High[i]; counter1 = 1; } else { v1[i] = v1[i+1]; counter1++; } val2 = iFractals(NULL, 0, MODE_LOWER, i); //---- if(val2 > 0) { v2[i] = Low[i]; counter2 = 1; } else { v2[i] = v2[i+1]; counter2++; } In order to send email ...
MQL4 Programming
-
yousername replied Sep 23, 2017if(Time[0] > mBoxTime) { for(int i = ObjectsTotal()-1; i >= 0; i--) if(ObjectType(ObjectName(i)) == 16) ObjectSet(ObjectName(i), OBJPROP_TIME2, Time[0]+MoveBoxRight*500); mBoxTime = Time[0]; } You have to create the object first before you can call ...
MQL4 Programming
-
yousername replied Sep 23, 20171. Yeah I deliberately removed the arrow for better performance during the backtest. I can keep the arrow intact if not in backtest. 2. What instrument are you using so I can verify 3 and 4. I don't understand the issue.
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 23, 2017Sorry, you have to follow FG's standard. 1,-1 or 0.
Flexy Grid EA (Grid Trading)