Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

simterann22

Floor Trader Pivots @session Times

Recommended Posts

Hi all,

 

I'm posting this Floor Trader Pivots indicator because it's been modified for use with session times rather than a 'new day' crossover. For FTPs to work properly with futures or forex they must be based on the session times. eg. ES 330pm -315pm CT and forex 5pm-5pm ET (although some use other times for forex) not to mention weekend times being different from weekday times as well.

 

I found the standard TS FTP indicator does not use session times, so after a frustrating weeks search I was nearly ready to buy (hit me now!) a commercial FTP indicator.

 

The answer to my problem was from the Tradestation forum:

 

I simply had to use :

if currentsession(0)<>currentsession(0)[1]

 

instead of

 

if date<>date[1]

.

 

Here is the complete code:

 

{Floor Trader Pivots with session time use}
inputs: 
   Plot_5or7( 5), { if 7, adds plots for S3 and R3 to other 5 lines }
PlotDailyPivots ( true),
PlotWeeklyPivots (true),
PlotMonthlyPivots (true),
PlotDailyMidPts( true),
PlotWeeklyMidPts(  true),
PlotMonthlyMidPts(  true);


variables: 
    S1( 0 ), WeekS1( 0 ), MonthS1( 0 ), 
    S2( 0 ), WeekS2( 0 ), MonthS2( 0 ), 
    S3( 0 ), WeekS3( 0 ), MonthS3( 0 ), 
    R1( 0 ), WeekR1( 0 ), MonthR1( 0 ), 
    R2( 0 ), WeekR2( 0 ), MonthR2( 0 ), 
    R3( 0 ), WeekR3( 0 ), MonthR3( 0 ), 
    PP( 0 ), WeekPP( 0 ), MonthPP( 0 ),

    YestHigh( 0 ), LastWeekHigh( 0 ), LastMonthHigh( 0 ), 
    YestLow( 0 ), LastWeekLow( 0 ), LastMonthLow( 0 ),
    YestClose( 0 ), LastWeekClose( 0 ), LastMonthClose( 0 ),
    Counter( 0 ) ;

if currentsession(0) <> currentsession(0)[1] then //session times	 
//if Date <> Date[1] then //midnight open/close
begin 
{ increment Counter to be sure enough data is processed - see comment below } 
Counter = Counter + 1 ; 
YestHigh = HighD( 1 ) ; 
YestLow = LowD( 1 )  ; 
YestClose = CloseD( 1 )  ;
PP = ( YestHigh + YestLow + YestClose ) / 3 ; 
R1 = PP * 2 - YestLow ; 
R2 = PP + YestHigh - YestLow ; 
R3 = R2 + YestHigh - YestLow ; 
S1 = PP * 2 - YestHigh ; 
S2 = PP - YestHigh + YestLow ; 
S3 = S2 - YestHigh + YestLow ; 
end ;

if DayofWeek( Date ) < DayofWeek( Date[1] ) then

   begin 
  	LastWeekHigh = HighW( 1 ) ; 
LastWeekLow = LowW( 1 )  ; 
LastWeekClose = CloseW( 1 )  ; 
WeekPP = ( LastWeekHigh + LastWeekLow + LastWeekClose ) / 3 ; 
WeekR1 = WeekPP * 2 - LastWeekLow ; 
WeekR2 = WeekPP + LastWeekHigh - LastWeekLow ; 
WeekR3 = WeekR2 + LastWeekHigh - LastWeekLow ; 
WeekS1 = WeekPP * 2 - LastWeekHigh ; 
WeekS2 = WeekPP - LastWeekHigh + LastWeekLow ; 
WeekS3 = WeekS2 - LastWeekHigh + LastWeekLow ; 
end ; 

if Month( Date ) <> Month( Date[1] ) then   // detected a new month 

begin

LastMonthHigh = HighM( 1 ) ; 
LastMonthLow = LowM( 1 )  ; 
LastMonthClose = CloseM( 1 )  ;


MonthPP = ( LastMonthHigh + LastMonthLow + LastMonthClose ) / 3 ;
MonthR1 = MonthPP * 2 - LastMonthLow ; 
MonthR2 = MonthPP + LastMonthHigh - LastMonthLow ; 
MonthR3 = MonthR2 + LastMonthHigh - LastMonthLow ; 
MonthS1 = MonthPP * 2 - LastMonthHigh ; 
MonthS2 = MonthPP - LastMonthHigh + LastMonthLow ; 
MonthS3 = MonthS2 - LastMonthHigh + LastMonthLow ;



end ; 

if Counter >= 2 then { if at least one full day's data has been 
processed} 
begin
if bartype=0 then	//tick chart only
begin
	if PlotDailyPivots = true then

	begin
		if Plot_5or7 = 7 then 
		Plot1( R3, "R3" ) ; 
		Plot2( R2, "R2" ) ; 
		Plot3( R1, "R1" ) ; 
		Plot4( PP, "PP" ) ; 
		Plot5( S1, "S1" ) ; 
		Plot6( S2, "S2" ) ; 
		if Plot_5or7 = 7 then 
			Plot7( S3, "S3" ) ;
		end;
	if PlotDailyMidPts then
	begin
		Plot22((PP+S1)/2,"PPmidS1");
		Plot23((S1+S2)/2,"S1midS2");
		Plot24((S2+S3)/2,"S2midS3");
		Plot25((PP+R1)/2,"PPmidR1");
		Plot26((R1+R2)/2,"R1midR2");
		Plot27((R2+R3)/2,"R2midR3");
	end;


end;

if bartype<=1 then	//tick and intraday chart only
begin
	if PlotWeeklyPivots = true then

	begin
		if Plot_5or7 = 7 then
		Plot8( WeekR3, "WeekR3" ) ;
		Plot9( WeekR2, "WeekR2" ) ;
		Plot10( WeekR1, "WeekR1" ) ; 
		Plot11( WeekPP, "WeekPP" ) ; 
		Plot12( WeekS1, "WeekS1" ) ; 
		Plot13( WeekS2, "WeekS2" ) ; 
		if Plot_5or7 = 7 then 
		Plot14( WeekS3, "WeekS3" ) ;
	 	end;
	if PlotWeeklyMidPts then
	begin
		Plot28((WeekPP+WeekS1)/2,"WPPmidWS1");
		Plot29((WeekS1+WeekS2)/2,"WS1midWS2");
		Plot30((WeekS2+WeekS3)/2,"WS2midWS3");
		Plot31((WeekPP+WeekR1)/2,"WPPmidWR1");
		Plot32((WeekR1+WeekR2)/2,"WR1midWR2");
		Plot33((WeekR2+WeekR3)/2,"WR2midWR3");
	end;

end;
if bartype<=2 then	//tick, intraday or daily chart only
begin
	if PlotMonthlyPivots = True then

	begin
		if Plot_5or7 = 7 then 
		Plot15( MonthR3, "MonthR3" ) ; 
		Plot16( MonthR2, "MonthR2" ) ; 
		Plot17( MonthR1, "MonthR1" ) ; 
		Plot18( MonthPP, "MonthPP" ) ; 
		Plot19( MonthS1, "MonthS1" ) ; 
		Plot20( MonthS2, "MonthS2" ) ; 
		if Plot_5or7 = 7 then 
		Plot21( MonthS3, "MonthS3" ) ;
 	end;
	if PlotMonthlyMidPts then

	begin
		Plot34((MonthPP+MonthS1)/2,"MPPmidMS1");
		Plot35((MonthS1+MonthS2)/2,"MS1midMS2");
		Plot36((MonthS2+MonthS3)/2,"MS2midMS3");
		Plot37((MonthPP+MonthR1)/2,"MPPmidMR1");
		Plot38((MonthR1+MonthR2)/2,"MR1midMR2");
		Plot39((MonthR2+MonthR3)/2,"MR2midMR3");
	end;


end;

end;

 

 

Bear in mind I have hard coded the FTPs to appear a certain way based on my chart type. eg. daily pivots will not appear on anything but a tick chart, weekly will not appear on daily chart, simply because it gets too cluttered and I was tired of having to change the inputs tab everytime I changed the timeframe. Since I use multiple time frame charts next to each other I can see them all together. I personally like to see the FTPs as lines, but you can eliminate the 'joining lines' as the FTPs change by using left ticks or dots.

 

Some issues:

 

1) Tick chart FTPs may be slightly different from correct daily, weekly etc.. This I believe is because of the 'lack of time factor'. I don't know of a solution for this other than keeping an intraday pivot chart next to your tick chart. The Data2 solution (below) does not work with tick charts either. Any ideas?

 

2) This indicator WILL NOT WORK on a futures day session chart eg. ES.D in its current format above as it does not take into account the highs and the lows of the overnight session. However you could add a hidden Data2 (plot DAILY Globex) and change the code regarding yesterday's H,L and C.

 

YestHigh = HighD( 1, data2) ; 
 YestLow = LowD( 1 , data2)  ; 
 YestClose = CloseD( 1, data2)  ;

 

3) Make sure you set the minimum range to say 2 months so that your monthly and weekly FTPs will be correct.

 

Make sure when you have plotted the indicator that you check a reliable Pivot website and crosscheck your data. I find I need to set up a custom session (I call Globex) set with the exact Globex futures times for the FTPs to be accurate.

 

BTW does anyone know how to code to plot differently for different minute or tick timeframes eg. 5min compared to 240min etc.? I find the 'bartype' reserved word a little to inflexible.

 

Enjoy.

FLOOR_TRADER_PIVOTS_SESSION_TIMES.ELD

5aa70ef2af423_FlorrTraderPivotsSessionTimes.thumb.png.3491ebc92e393d9cc3b424f33338af8a.png

Edited by simterann22

Share this post


Link to post
Share on other sites

Excited to download this b/c I am tired of manually putting them in everyday however not sure if I need to copy and paste the code or download the file? I have tried both and not having any luck. Any suggestions?

Share this post


Link to post
Share on other sites

Sorry, I have to ask some silly questions first:

 

Did the ELD install?

Did you verify the 'cut and paste version'?

Did you get anything on your screen?

Did you apply it to 'Use Same Axis as Underlying Data'?

Share this post


Link to post
Share on other sites
Yes the file did install and the verification failed. Any suggestions? (it didn't like the word criteria). thks for your time!

 

 

what program/version are you using?

 

pls copy and paste the error message here.

(or a screen shot)

Share this post


Link to post
Share on other sites
Yes the file did install and the verification failed. Any suggestions? (it didn't like the word criteria). thks for your time!

 

Again....have to ask the silly questions......

 

I'm assuming you cut and paste the code as a new indicator, and not installed via the ELD, since you say you verified it. Yeah? If so, did you make a new 'indicator' or did you mistakenly make a new paintbar, showme or function? :crap:

 

Here is a copy of the code in text file just in case you missed any code while copying it:

FTPs @Sessiontimes.txt

Share this post


Link to post
Share on other sites

How can I plot FTP's with only the Levels that are close to the current prices. My chart plots all FTP lines on the chart at all times , condensing the price bars.

Thank you for this indicator.

Share this post


Link to post
Share on other sites

I looked into doing a similar thing. This is an idea from the TS Forums:

 

Suppose you're trying to plot value1, and you don't want it plotted unless price gets within 2 big points. Format your plot as one of Point, Cross, Left Tic or Right Tic (cannot be Line), and modify your code to the following:

 

 

 

input:

plotThreshold(2);

 

...

 

if absValue(C-value1)<=plotThreshold then

plot1(value1,"Bull");

 

******* So you could insert this into your FTP code******

 

The reason I do not use it is because it does not plot nicely on the chart.... a pivot line will look like it's been hacked to pieces, only appearing as a dot, tick etc if an individual bar high comes near it.

 

I simply do not "Expand Range to Include Analysis Techniques" and I only see those pivots that appear within my chart range. Another alternative is to comment out the plots for monthly and weekly S and Rs but that's just a Bandaid job in my opinion.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • In Italy, I saw many of our brothers from different parts of Africa, sleeping and living in the park, the weather was very cold and its obvious that they were looked down upon. It made me want to cry and several questions overwhelmed my heart.   Is it not better to remain in Africa than to be homeless in this freezing cold weather?   I wish I have all the money in the world to rescue them...   Is this the reason why our skin color is looked down upon?   Do our government officials see this sight when they also travel outside of the country...does it hurt them or pain them like it pained me? By Frank Abah, Quora   Profits from free accurate cryptos signals: https://www.predictmag.com/   
    • ELV Elevance Health stock, watch for an upside gap breakout at https://stockconsultant.com/?ELV
    • ORLY OReilly Automotive stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?ORLY
    • Date: 28th March 2025.   Market Selloff Deepens as Tariff Concerns Weigh on Investors     Global stock markets extended their losing streak for a third day as concerns over looming US tariffs and an escalating trade war dampened investor sentiment. The flight to safety saw gold prices surge to a record high, underscoring growing risk aversion. Stock Selloff Intensifies The MSCI World Index recorded its longest losing streak in a month, while Asian equities saw their sharpest decline since late February. US and European stock futures also signalled potential weakness, while cryptocurrency markets retreated and bond yields edged lower. Investors are scaling back their exposure ahead of President Donald Trump’s expected announcement of ‘reciprocal tariffs’ on April 2. His latest move to impose a 25% levy on all foreign-made automobiles has sparked fresh concerns over inflation and economic growth, prompting traders to reassess their strategies. Investor Strategies Shift Market experts are adjusting their portfolios in anticipation of heightened volatility. ‘It’s impossible to predict Trump’s next move,’ said Xin-Yao Ng of Aberdeen Investments. ‘Our focus is on companies that are less vulnerable to tariff policies while taking advantage of market dips to find value opportunities.’ Yield Curve Signals Economic Concerns In the bond market, the spread between 30-year and 5-year US Treasury yields widened to its highest level since early 2022. Investors are bracing for potential Federal Reserve rate cuts if economic growth slows further. Long-term Treasury yields hit a one-month peak as inflation risks tied to tariffs spurred demand for higher-yielding assets. Boston Fed President Susan Collins noted that while tariffs may contribute to short-term price increases, their long-term effects remain uncertain. Gold Hits Record High as Safe-Haven Demand Rises Amid market turbulence, gold prices soared 0.7% on Friday, reaching an all-time high of $3,077.60 per ounce. Major banks have raised their price targets for the precious metal, with Goldman Sachs now forecasting gold to hit $3,300 per ounce by year-end. Looking Ahead As investors digest economic data showing US growth acceleration in Q4, attention will turn to Friday’s release of the personal consumption expenditures (PCE) price index—the Federal Reserve’s preferred inflation measure. This data will be critical in shaping expectations for future Fed policy moves. With markets on edge and trade tensions escalating, investors will closely monitor upcoming developments, particularly Trump’s tariff announcement next week, which could further dictate market direction.   Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Andria Pichidi HFMarkets   Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • Crypto hype is everywhere since it also making new riches as well, i however trade crypto little as compared to other forex trading pairs.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.