- Search Energy EXCH
-
RaptorUK replied Jul 22, 2013Copy it to a text file called RaptorUK.mq4 and compile it in MetaEditor . . . it should do what you want as an Indicator
Real-time spread indicator for mt4
-
RaptorUK replied Jul 22, 2013Why are you posting DECOMPILED (stolen) CODE ? ?
Please help to modify this EA
-
RaptorUK replied Jul 22, 2013What was the Spread last week when you ran the Strategy Tester ? what was the Spread when you tested the second time ?
MT4 Backtesting Issue
-
RaptorUK replied Jul 22, 2013#property indicator_chart_window int deinit() { Comment(""); return(0); } int start() { Comment("Spread is: ", DoubleToString(Ask - Bid, Digits) ); return(0); }
Real-time spread indicator for mt4
-
RaptorUK replied Jul 20, 2013You can't change that, you need to post the source code, the .mq4 file . . . if you don't have it contact the author and ask for it.
Can anyone make this stochRSI indicator a multi time frame?
-
RaptorUK replied Jul 20, 2013If you want the standard Bollinger Bands values you can use iBands() if you have a non-standard Bollinger Bands indicator then use iCustom() to get it's buffer values. More iCustom() stuff here: Detailed explanation of iCustom - MQL4 forum read the ...
Retrieve indicator's value
-
RaptorUK replied Jul 19, 2013Which platform ? MT4, MT5, Ninja ? what have you tried so far ? please show your code . . .
Retrieve indicator's value
-
RaptorUK replied Jul 19, 2013You need to specify the symbol for iLow() and iBarShift() if you want to use the current symbol use NULL not 0 You can use OrderLots() instead of 0.04 and you can also use OrderClosePrice() instead of Ask/Bid, that way you don't need to determine if ...
Code to capture high/low of bar trade opened on?
-
RaptorUK replied Jul 19, 2013OrderSelect() the order, use iBarshift() with the OrderOpenTime() to get the bar number when the order was opened, use the bar number with High[] or iHigh() and Low[] or iLow()
Code to capture high/low of bar trade opened on?
-
RaptorUK replied Jul 18, 2013It is a very accurate record of "tick count".
Volume indicator accuracy
-
RaptorUK replied Jul 17, 2013Learn some humility and patience. You didn't even say what platform it was for . . . MT5 ? MT4 ? Ninja ? . . . .
Need an indicator that gives a sound alert every 14 minutes
-
RaptorUK replied Jul 16, 2013You are aware that "Volume" in MT4 has nothing to do with the number of lots traded ? is is purely a count of ticks during the bar for the current timeframe.
coding question - alert for volume indicator
-
RaptorUK replied Jul 12, 2013Really sorry but I am very, very pushed for time just now . . .
Help with Indicator, EA or even Trade Manager
-
RaptorUK replied Jul 12, 2013You need to use IsStopped() Try this . . . file
Problem Remove Script: MT4 While loop
-
RaptorUK replied Jul 12, 2013OK, but aren't you going to show your results ? the report from the Strategy Tester runs ?
Help with Indicator, EA or even Trade Manager
-
RaptorUK replied Jul 12, 2013Please show your "unbeelievable" Strategy Test results, it might encourage someone to help.
Help with Indicator, EA or even Trade Manager
-
RaptorUK replied Jul 12, 2013No, I mean when 2 or more ticks come together such that start() is only called once and you have missed one or more ticks . . . there is no way of knowing how much price moved for each of the ticks if you missed some.
Tick indicator modify request
-
RaptorUK replied Jul 11, 2013What about missed ticks ? would you want to ignore them or show something to represent a missed tick ?
Tick indicator modify request