- Search Metals Mine
-
yousername replied Sep 18, 2017are you dumb or annoying? Hire some one to make it for you if no one in FF doesn't want to do what you're requested.
MQL4 Programming
-
yousername replied Sep 18, 2017You tried to create a new object with the same name. That is why the first object is not shown because it got replaced. string FIB_SUP1="TEST"; string FIB_SUP2="TEST2"; void OnStart() { ObjectCreate(0,FIB_SUP1, OBJ_RECTANGLE, 0, iTime(NULL, ...
MQL4 Programming
-
yousername replied Sep 17, 2017//+------------------------------------------------------------------+ //| Ultimate EA.mq4 | //| Copyright 2017, MetaQuotes Software Corp. | //| https://www.mql5.com | //+------------------------------------------------------------------+ #property ...
MQL4 Programming
-
yousername replied Sep 15, 2017I have also update the FG_2.1.ex4 so that it can run backtest. The old version 2.1 will not be able to be backtested because the EA thinks the .jar file doesn't exists although it does. Anyhow you must use the latest version attached in this reply. ...
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 15, 2017In this video I show you about Variable, variable scope and function url url url Script //+------------------------------------------------------------------+ //| test.mq4 | //| Copyright 2016, MetaQuotes Software Corp. | //| ...
MQL4 Programming
-
yousername replied Sep 15, 2017No repository. Closed source project. Cheers
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 15, 2017Latest update Now it has a .Jar file checking. When the jar file not found, the EA will be removed and gives and alert about the missing jar file.
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 15, 2017probably in the next update I will add a JAR File checking. If the jar file is not found, FG won't run and give alert
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 15, 2017the jar is executed with a dll exec file and it doesn't return anything that tells the error. So after you place the jar file, does it work now?
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 14, 2017In this video I show you how to perform backtesting FG with custom signal provided by ZigCharm indicator. It's not the best setup, you have to find it on your own. You can also make your own signal and plug it in into FG. url
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 14, 2017I use ZigCharm indicator to tell me the market structure. Correct I follow the direction of the trend and I don't trade that often. My recent sell grid EU just got closed because it hit Breakeven, only earned pennies 2 pips, Mother FXXKER
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 14, 2017Grid style BUY 111 = Buy stop, Buy, Buy Limit 101 = Buy stop, Sell, Buy Limit 000 = Sell Limit, Sell, Sell Stop Sell 111 = Sell Limit, Sell, Sell Stop 101 = Sell Limit, Buy, Sell Stop 000 = Buy Stop, Buy, Buy Limit From above you should see a ...
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 14, 2017Download the JAR file in the attachment in the post here url Extract it into the MQL4>FILE folder
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 14, 2017Strict is necessary to maintain compatibility with code created for MetaTrader prior to the build 600
MQL4 Programming
-
yousername replied Sep 14, 2017MQL4 Property and Buffer Good site for explaining Property url url //+------------------------------------------------------------------+ //| tutorial 4A.mq4 | //| Copyright 2017, MetaQuotes Software Corp. | //| https://www.mql5.com | ...
MQL4 Programming
-
yousername replied Sep 14, 2017Extract the zip file into the MQL4>FILE folder path file
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 13, 2017Hint: make a flag A 'flag' is a variable that is supposed to signalize something. Think about the word itself - flags are used in sending signals. In our world of programming a basic boolean flag can either be "up" or "down", either true or false. A ...
MQL4 Programming
-
yousername replied Sep 13, 2017Could you tell me how did you get that error pop up message? can you make sure that the java_economic_calendar.jar file is in the Files folder?
Flexy Grid EA (Grid Trading)
-
yousername replied Sep 13, 2017Look at the screenshot. image Your code doesn't work because the controlled statement is empty, that's why it prints BUY and SELL You should do instead is like below correct if(bla_bla_bla<30){ do something here } Don't do if(bla_bla_bla<30); { do ...
MQL4 Programming