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
Mtf fibopivot, i think
Hi
I'm going cross eyed trawling through threads, so I'll ask & see what happens.
I'm looking for a weekly Pivot indicator....THAT DOESN'T PAINT HISTORICALLY.
Can anyone point me at one?
thanks
Do you trade with S/R or pivot
Hi,
When I talk to traders about values of pivot or S/R we have sometimes different values.
The main reason is because we have not same server time for our calculation.
So small question to you ?
Do you trust or trade pivots or s/r ?
Of course I talk about monthly,weekly,daily ( pivot or resistance or support)
hi
pivot and SR only works if you're in same broker, Pivot and SR came from what kind of forex system did u use,I've used SR as my TP or SL based on trend follower
===================
Forex Indicators Collection
pivot and SR only works if you're in same broker, Pivot and SR came from what kind of forex system did u use,I've used SR as my TP or SL based on trend follower
===================
Forex Indicators CollectionHi,
I use differents systems most often I use acoustica , BB Scalp and eagle system.
Only in eagle system can I use S/R or pivot but I'm not sure it is the best way to bank pips.
Open_Pivot_Pluslevels
Hello all on this thread,
I like the attached indicator, & use it all the time now that I finally figured out how to make it work with five digits behind the decimal. I wouls really like to have another line added, is there a coder who would do that for me?
Hope there is, thanks
pivot midnight
Attached an indicator of the pivot opening day at 00:00. This indicator is the start time of the fixed pivot. Someone would be so kind to modify the indicator so you can change the start time of the pivot? for example, start time at 08:00, 14:30 etc
sorry this is the indi
Programming Request: Help with Weekly Pivot With Unique Time Start
Hi Guys and Gals,
Trying to write a weekly pivot that starts at 2 am Monday and ends 1:59.59 Monday.
This is because my broker's servers are in Cypress, 2 hours ahead of GMT.
How do I retrieve the final bid price value of 1:59 and 59 seconds on Monday only and plug it into the pivot point formula as last weeks close (W_yesterday_close)?
How do I retrieve the initial bid price value of 2:00 and 00 seconds on Monday only and plug it into the pivot point formula as this weeks open (W_today_open)?
All my variables at the beginning are stated as "double" and =0 initially.
If anyone could help it would be much appreciated.
Thanks
ArrayCopyRates(W_rates_d1, Symbol(), 10080);
W_yesterday_open = W_rates_d1[1][1];
W_yesterday_high = W_rates_d1[1][3];
W_yesterday_low = W_rates_d1[1][2];
W_day_high = W_rates_d1[0][3];
W_day_low = W_rates_d1[0][2];
if(DayOfWeek()==1)
{if(Hour()==1)
{if(Minute()==59)
{if(Seconds()==59)
{ W_yesterday_close = MarketInfo(Symbol(),MODE_BID);
}}}} else W_yesterday_close = W_yesterday_close;
if(DayOfWeek()==1)
{if(Hour()==2)
{if(Minute()==0)
{if(Seconds()==0)
{ W_today_open = MarketInfo(Symbol(),MODE_BID);
}}}} else W_today_open = W_today_open;
if(DayOfWeek()>1)
{W_yesterday_close = W_yesterday_close;
W_today_open = W_today_open;
}
if(DayOfWeek()==0)
{W_yesterday_close = W_yesterday_close;
W_today_open = W_today_open;
}
//---- Calculate Pivots
W_D = (W_day_high - W_day_low);
W_Q = (W_yesterday_high - W_yesterday_low);
W_P = (W_yesterday_high + W_yesterday_low + W_yesterday_close + W_today_open) / 4;
W_R1 = (2*W_P)-W_yesterday_low;
W_S1 = (2*W_P)-W_yesterday_high;
W_R2 = W_P+(W_yesterday_high - W_yesterday_low);
W_S2 = W_P-(W_yesterday_high - W_yesterday_low);
Request: Weekly Pivot with Time Zone Offset
Hi Guys and Girls
Thank you to the person / people that originally programmed the first indicator...
Attached is an indicator that calculates pivots of all different types for the daily. It can also vary the timezone. I am trying to convert it into a weekly pivot indicator with Time Zone change ability; but really I have know idea.
If anyone could help it would be much appreciated.
Attached is the original very good daily indicator programmed by someone else.
Second attach is my very poor attempt at changing this into a weekly TZ indicator.
Your help would be much appreciated.
Thank you
Or if anyone has a weekly pivot with adjustable time zone for pivot determination that would be highly appreciated. I have climbed highest mountains but i still haven't found what i'm looking for.
Thank you.