- Search Metals Mine
- 1,032 Results (19 Threads, 1,013 Replies)
-
futurespec replied Mar 27, 2012yes prices need to be 'normalised' just to keep MT4 happy. ERR_INVALID_PRICE_PARAM (4107), ERR_INVALID_TICKET (4108), you are getting lots of errors ... need yo find why 1 reason is selecting the wrong ticket number the other is possibly ...
EA-Help Closing Position
-
futurespec replied Mar 27, 2012You are only creating 1 label. If you need to move it then you will need to create a new label (different name) for the 1st one to stay where you moved it to, if that makes sense.
Help required with adding text pool
-
futurespec replied Mar 27, 2012if(iClose(NULL,PERIOD_M30,1)<iClose(NULL,PERIOD_M30,2)) CloseBuy=1; if(iClose(NULL,PERIOD_M30,1)>iClose(NULL,PERIOD_M30,2)) CloseSell=1; should be .... if(iClose(NULL,PERIOD_M30,1) < iOpen(NULL,PERIOD_M30,1)) CloseBuy=1; if(iClose(NULL,PERIOD_M30,1) ...
EA-Help Closing Position
-
futurespec replied Mar 25, 2012Not what it was designed to do. Not what you asked for!!!! Just use the indi that I put in the post a few items down. That will do it
Script that draws horizontal lines
-
futurespec replied Mar 25, 2012I just loaded it from the above link and it worked 1st time??? Save the file to your scripts folder. Compile it. Select the chart you want it on Go to Navigator Scripts Select the script and double click or drag to chart (sorry if teaching you to ...
Script that draws horizontal lines
-
futurespec replied Mar 24, 2012You need to set the price on the popup that appears as you applly the script to the chart. From memory the default was set to 1.0000 so your lines will be there if you did not change it.
Script that draws horizontal lines
-
futurespec replied Mar 23, 2012Here you go... Need to take care with the price that you set. Put in scripts folder
Script that draws horizontal lines
-
futurespec replied Mar 23, 2012mn LineSets2 attached in previous response will do it. Just set mLineSpace1 = 10, mLineSpace2 = 10, mLineSpace3 = 10,mLineSpace4 = 10 and it will give lines 10 pips apart above and below the main line.
Add Multiple Horizontal Lines Fixed To Each Other But Movable As A Set?
-
futurespec replied Mar 22, 2012Updated so that it gives you lines both sides of the 'moved' line on the assumption that might help a little.
Add Multiple Horizontal Lines Fixed To Each Other But Movable As A Set?
-
futurespec replied Mar 22, 2012You originally said... "More details: the horizontal lines are 3 pips apart" Anyway! try this
Add Multiple Horizontal Lines Fixed To Each Other But Movable As A Set?
-
futurespec replied Mar 22, 2012If you select the black line and move that then the others will move with it! You can set your own number of lines ( mLines). And the width apart (mSpace = 3) HTH
Add Multiple Horizontal Lines Fixed To Each Other But Movable As A Set?
-
futurespec replied Mar 15, 2012this should do it... HTH
Can someone code this ridiculously simple MA indi?
-
futurespec replied Feb 22, 2012If you get many more posts FF will run out of server space ;-) Great stuff. Anyone with the GBPJPY ... does it fullfil the criteria now or is it too far from lower band?
Extreme TMA System
-
futurespec replied Feb 21, 2012Does the MTF HA shown on some of your charts have any use or do you use it for some little tweak? Thanks
Extreme TMA System
-
futurespec replied Feb 21, 2012Hi Alorente, Don't usually follow the trade systems threads but yours caught my eye. 1 Q please. You show the MTF HA but I cannot find where you use it ... does it have any use in your system? Thanks. and congrats on the interest in your thread.
Extreme TMA System
-
futurespec replied Feb 12, 2012you did say 70/30. Modded to give you the option. also wma used instead of sma. just put it on a 1min chart not read your thread so know nothing about it
Stochastic blocks
-
futurespec replied Feb 12, 2012Try this for size. Does basically what you ask. If you need mods then please do it yourself, no time to play with it. HTH
Stochastic blocks
-
futurespec replied Feb 3, 2012In your EA try something like.... YourVar = iCustom(NULL, 0, "YourIndiName", Lime, Red, SlateGray, 3, ZZZ, 0) Where ZZZ is the number of the buffer that you wish to reference. reference for format ... double iCustom( string symbol, int timeframe, ...
icustom for this simple indicator
-
futurespec replied Feb 3, 2012Like I said not sure what you are trying to do. It sets it as a global variable within the code for the indicator. If you then want a different EA you would need to reference the indi from the EA using iCustom() Not had time to study your code so ...
icustom for this simple indicator