- Search Metals Mine
- 1,032 Results (19 Threads, 1,013 Replies)
-
futurespec replied Jan 17, 2014Several errors .. this corrects it but not checked what code does. HTH M.
Unbalanced Parenthesis
-
futurespec replied Jan 17, 2014Select the white line and move the end points to the values that you wish to calculate. M.
tool to measure percentage change in MT4
-
futurespec replied Jan 16, 2014This will give you what you asked for but not necessarily pretty. Gives you a base to work from M.
tool to measure percentage change in MT4
-
futurespec replied Jan 13, 2014Rat, Just comment out .. // if(Time[0] > mTime) and recompile and that should solve it. M.
Hi Lo Horizontal Lines
-
futurespec replied Jan 13, 2014Rat... Not sure what you wanted but this should give you something to work from. HTH M.
Hi Lo Horizontal Lines
-
futurespec replied Jan 11, 2014Try something like... bool DistanceOK(int mMagic, string mSym) { int m, mOrdTot; bool mNear = false; mOrdTot = OrdersTotal(); for(m = mOrdTot - 1; m >= 0; m--) { OrderSelect(m, SELECT_BY_POS, MODE_TRADES); if(OrderSymbol() == mSym && ...
Open Position Distance calculation
-
futurespec replied Jan 9, 2014NP. Don't break it again! (No I know it was my initial coding error). All the best, M.
MM Indicator Help Please (iExposure)
-
futurespec replied Jan 9, 2014There should be a mPriceS = 0; just after for(j = 0; j < 8; j++) // each pair // added for extra currencies {
MM Indicator Help Please (iExposure)
-
futurespec replied Jan 9, 2014No time at present, sorry. Check ... for(j = 0; j < 8; j++) // each pair // added for extra currencies Think it should be for(j = 0; j < 9; j++) // each pair // added for extra currencies see if that fixes it M.
MM Indicator Help Please (iExposure)
-
futurespec replied Jan 9, 2014Sorry cannot spot an error. Looks OK and no reason why it would have changed from before apart from a factor of 10. M.
MM Indicator Help Please (iExposure)
-
futurespec replied Jan 8, 2014Hi J, Mods as requested. Thought I had multiplied risk pips/$ by lots but perhaps edited/deleted out by mistake) 'Label' removed. '-' added. order removed. Will look at risk?$ for orders with no TP/SL later if I get chance. M. PS. Nice cats ... how ...
MM Indicator Help Please (iExposure)
-
futurespec replied Jan 8, 2014Modded something that I already had. Should work but you will need to check the figures. You will need to set mCrncyPairs[] to the pairs that you use before you start. Currently set for max of 6 traded pairs. HTH M.
MM Indicator Help Please (iExposure)
-
futurespec replied Dec 31, 2013Think with slippage of 500 you should be ...

What is enable max deviation from quoted price?
-
futurespec replied Dec 29, 2013Declare a global var... bool mMailSent = false; int start() { int counted_bars=IndicatorCounted(); ObjectCreate(TLineName, OBJ_TREND, 0, Time[25], Bid, Time[0], Ask); ObjectSet(TLineName, OBJPROP_STYLE, LineStyle); ObjectSet(TLineName, ...
Sending Alert Mail Only Once
-
futurespec replied Dec 27, 2013If you simply wish to close a group (which may be in any pair) then something like this should do it. Script ... to go in 'scripts' folder. You will need to assign a comment to each trade in the group (either manually or from within an EA) Set ...
Looking for a script or EA to manage trades in groups
-
futurespec replied Dec 24, 2013Try this as a starting point. Does nothing really but should give you an idea where to begin I hope. M.
Adding Buffers to track the last 7 waves - zigzag indicator
-
futurespec replied Dec 24, 2013Just noticed that you updated the indi. pivot1, pivot2, pivot3 should be arrays really .. pivot1[], pivot2[], pivot3[] so that you can store values for each bar. They are not adding anything really. You should be referencing the values of the ZZ ...
Adding Buffers to track the last 7 waves - zigzag indicator