
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
ALWAYS USE LIMIT ORDERS unless you are in a PANIC!!
I posted a FREE TRO RANGE GAUGE here:
https://www.mql5.com/en/forum/178406/page8
I use the H1 timeframe over 24 or 96 bars and use that average. But look at the M15 for the GBPJPY you might be pleasantly surprised!!
The Barry Support and Resistance works fine.
I strongly suggest you only trade ONE PAIR over and over until you master it. Each pair will give you many trade opportunities every day. GBPJPY and USDJPY give the best bang for the buck.
Tro, which MT4 broker do you use to plot this BZ indicator?
I think I need a data feed calibration, so I can pipin'
just like you do, hehe ..
Thanks ..
Tro, which MT4 broker do you use to plot this BZ indicator?
I think I need a data feed calibration, so I can pipin'
just like you do, hehe ..
Thanks ..I do NOT use an MT4 broker to trade.
I use Online Stock Trading | MB Trading Direct Access Brokerage Firm
There is no such thing as a FIXED SPREAD in forex and there is no reason to give your money to a fixed spread broker.
I do NOT use an MT4 broker to trade.
I use Online Stock Trading | MB Trading Direct Access Brokerage Firm
There is no such thing as a FIXED SPREAD in forex and there is no reason to give your money to a fixed spread broker.I mean the MT4 broker that you use for charting & ploting this BZ,
not the one that you use for trade.
Or do you plot this BZ indicator to MBT chart?
Thanks
I mean the MT4 broker that you use for charting & ploting this BZ,
not the one that you use for trade.
Or do you plot this BZ indicator to MBT chart?
ThanksI just use the metaquotes.com download. The give you a free real time demo account.
It is usually close enough to the MBT price.
I use eSignal to show the actual MBT price.
Thanks TRO,
thanks for everything ..
Larger "box" and figures...........
Please would you mind telling me how to increase the size of the "Box" in which the price is shown in your indicator called:
_Opening_Range_Hourly.mq4
Much appreciated.
Just posting the changes needed will be great thanks.
Best wishes.
Please would you mind telling me how to increase the size of the "Box" in which the price is shown in your indicator called:
_Opening_Range_Hourly.mq4
Much appreciated.
Just posting the changes needed will be great thanks.
Best wishes.I don't know if that can be done.
Here's the code that plots the price boxes:
void DoLabel( string dName, double dValue, color dColor )
{
if (ObjectFind(dName) != 0)
{
ObjectCreate(dName,OBJ_ARROW,0,Time[0],dValue);
ObjectSet(dName,OBJPROP_ARROWCODE,SYMBOL_RIGHTPRICE);
ObjectSet(dName,OBJPROP_COLOR,dColor);
}
else
{
ObjectMove(dName,0,Time[0],dValue);
}
}