Dislikedi sent your a pm, when you get time can you take a look at it and get back to me when you can?
Thanks.Ignored
Trading Levels with WRBs
Indicators and Rules for Simple Method of Scalping GBP/Jpy on 5 min chart 18 replies
RE-Imran Sait Method 6 replies
EA - "Simple Method of Scalping on 5 min chart , especially GBP/JPY - by Imran Sait" 36 replies
Making an EA: "Simple Method of Scalping any pair by Imran Sait" 82 replies
How to make my own "Imran Sait" Indicators? What do they mean? 4 replies
Dislikedi sent your a pm, when you get time can you take a look at it and get back to me when you can?
Thanks.Ignored
DislikedThanks Blondie, found it.
there seems to be a refresh problem with this indicator. I need to switch back and forth between TF's, otherwise I don't get new points displayed. Did I find an early development version, or is your version behaving similarly?
OhkaIgnored
DislikedDo you always trade in only the direction of the daily pivot indicator? (ie. when the price is above the daily pivot only trade long, when below only trade short).
Thanks in advance.Ignored
DislikedIf you'd followed the system strictly today you'd have shorted just below the pivot and been taking profit right about now for about 500 pips. Very nice.
One thing I would add is that the 30 minute rule works fine for most economic releases but for the really big releases, especially the interest rate decisions, it's better to follow a 2 hour rule before the release. Maybe even don't trade at all on the day until at least half an hour after the decision. That would have kept me out of a bad trade on Thursday.Ignored
DislikedI think that is a good indication of the move but what do the S and R values tell me? Does the Auto Daily pivot indicator adjust itself daily at 00:00 GMT?Ignored
DislikedI think that is a good indication of the move but what do the S and R values tell me? Does the Auto Daily pivot indicator adjust itself daily at 00:00 GMT?Ignored
DislikedLooks like the pivot re-sets daily at 00:00 GMT, here's the code, if that is the time on your broker uses on the metatrader software:
if (Use_Sunday_Data == false)
{
while (DayOfWeek() == 1)
{
YesterdayHigh = Day_Price[2][3];
YesterdayLow = Day_Price[2][2];
YesterdayClose = Day_Price[2][4];
Pivot = ((YesterdayHigh + YesterdayLow + YesterdayClose)/3);
R1 = (2*Pivot)-YesterdayLow;
S1 = (2*Pivot)-YesterdayHigh;
R2 = Pivot+(R1-S1);
S2 = Pivot-(R1-S1);
R3 = (YesterdayHigh + (2*(Pivot-YesterdayLow)));
S3 = (YesterdayLow - (2*(YesterdayHigh-Pivot)));
break;
}Ignored
DislikedThose are support and resistance lines. If you look right now at the gbp/jpy 15 min chart, you'll notice that the price has been bouncing off the support of 231.77. A break down below that level means that the price should fall further - Theoretically to the next S and R line (which is not plotted).
But if you look at the daily chart you can plot the next support level at around 230.16
Hope this helps.Ignored
DislikedIgnored
DislikedNo, I was just looking at the pivot lines. What version of ### Auto Pivot do you have loaded? I'm using the one from the first post. I don't know why my S3 is up higher than yoursIgnored