- Search Metals Mine
- 1,032 Results (19 Threads, 1,013 Replies)
-
futurespec replied Nov 4, 2011something like...... mTradesHist = "YourFileName.bin"; int mHist = FileOpen(mTradesHist, FILE_BIN|FILE_WRITE); if(mHist > 0) { FileWriteArray(mHist, mTrade, 0, 3000); FileClose(mHist); } Where mTradesHist is the filename of the file to save. ...
How to get 2-dimension array to file and than get back it [MQL4]
-
futurespec replied Nov 4, 2011Not 100% sure what you want but try this. (You will need to set the price) HTH
Can anyone modify this EA?
-
futurespec replied Nov 4, 2011Is the array in MT4 to start with? If so it would be easy with FileWriteArray( .... and then FileReadArray(
How to get 2-dimension array to file and than get back it [MQL4]
-
futurespec replied Nov 2, 2011Depends how much you want to pay and what you want it to do ! Try this. HTH
MT4 indi that plots weekly/monthly ATR levels?
-
futurespec replied Oct 26, 2011Try this; don't know what you want to do with it? As CM says, not worth messing with for free as people always come back and want more! It is a start and up to you to modify to your needs. HTH
sum of all highs from yesterday in MT4 language?
-
futurespec replied Oct 24, 2011Thought that I had done what you had asked for with the file that you provided. Sorry but not prepared to spend any more time on it. MQ4 was provided so that you can modify it yourself if required.
Looking for help coding an S+R EA
-
futurespec replied Oct 21, 2011Sorry do not understand. Draw a pic to show what you want. What conditions for alert?
Looking for help coding an S+R EA
-
futurespec replied Oct 19, 2011Try commenting out the delete object line.......... int deinit() { //---- TODO: add your code here ObjectsDeleteAll(0, OBJ_HLINE); Change to .............. int deinit() { //---- TODO: add your code here // ObjectsDeleteAll(0, OBJ_HLINE);
Help Customizing Murrey Math Indicator
-
futurespec replied Oct 19, 2011Think this is what you are asking for? HTH
Looking for help coding an S+R EA
-
futurespec replied Oct 14, 2011Try this, sort of does what you want but no time now to play with it. HTH
Need MT4 Indicator revised or re-created
-
futurespec replied Oct 14, 2011you need to post the mq4 file if you want someone to modify it !
Need MT4 Indicator revised or re-created
-
futurespec replied Oct 14, 2011use 1.0 on lower TFs,, maybe 10 on higher
Code a Time and Candle Indicator
-
futurespec replied Oct 14, 2011change the value of mGap to something more appropriate. HTH
Code a Time and Candle Indicator
-
futurespec replied Oct 11, 2011Think that zznbrm gave you a good clue. How are you arriving at pairName ?? Is it a string array ?? Are using an index of that array to get the pairName ??
MT4 multicurrency EA data problem