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

    • CVNA Carvana stock, nice top of range breakout at https://stockconsultant.com/?CVNA
    • GDRX GoodRx stock, good day, watch for a bottom range breakout at https://stockconsultant.com/?GDRX
    • Date: 14th February 2025.   Can The NASDAQ Maintain Momentum at Key Resistance Level?     The price of the NASDAQ throughout the week rose more than 3.00% to bring the price back up to the instrument’s resistance level. However, while taking into consideration higher inflation, tariffs and the resistance level, could the index maintain momentum?   US Inflation Rises For a 4th Consecutive Month The US Consumer Price Index, or inflation, rose for a 4th consecutive month taking the rate even further away from the Federal Reserve’s target. Analysts were expecting the US inflation rate to remain unchanged at 2.9%. However, consumer inflation rose to 3.00%, the highest since July 2024, while Producer inflation rose to 3.5%. Higher inflation traditionally triggers lower sentiment towards the stock market as investors' risk appetite falls and they prefer the US Dollar. However, on this occasion bullish volatility rose. For this reason, some traders may be considering if the price is overbought in the short term.   Addressing these statistics, US Federal Reserve Chair Jerome Powell acknowledged that the Fed has yet to achieve its goal of curbing inflation, adding further hawkish signals regarding the monetary policy. Other members of the FOMC also share this view. Today, Raphael Bostic, President of the Federal Reserve Bank of Atlanta, stated that the Fed is unlikely to implement interest rate cuts in the near future. This is due to ongoing economic uncertainty following the introduction of trade tariffs on imported goods and other policies from the Republican-led White House.   Most of the Federal Open Market Committee emphasizes additional time is needed to fully assess the situation. According to the Chicago Exchange FedWatch Tool, interest rate cuts may not start until September 2025.   What’s Driving The NASDAQ Higher? Earnings data this week has continued to support the NASDAQ. Early this morning Airbnb made public their quarterly earnings report whereby they beat both earnings per share and revenue expectations. The Earnings Per Share read 25% higher than expectations and Revenue was more than 2% higher. As a result, the stock rose more than 14%. Another company this week that made public positive earnings data is Cisco which rose by more than 2% on Thursday. Another positive factor continues to be the positive employment data. Even though the positive employment data can push back interest rate cuts, the stability in the short term continues to serve the interests of higher consumer demand. The US Unemployment Rate fell to 4.00% the lowest in 8 months. Lastly, investors are also increasing their exposure to the index due to sellers not being able to maintain control or momentum. Some economists also increase their confidence in economic growth if Trump can obtain a positive outcome from the Ukraine-Russia negotiations.   However, during Friday’s pre-US session trading, 80% of the most influential stocks are witnessing a decline. The NASDAQ itself is trading more or less unchanged. Therefore, the question again arises as to whether the NASDAQ can maintain momentum above this area.   NASDAQ - News and Technical analysis In terms of technical analysis, the NASDAQ is largely witnessing mainly bullish indications on the 2-hour chart. However, the main concern for traders is the resistance level at $21,960. On the 5-minute timeframe, the price is mainly experiencing bearish signals as the price moves below the 200-period simple moving average.   The VIX, which is largely used as a risk indicator, is currently trading 0.75% higher which indicates a lower risk appetite. In addition to this, bond yields trade 6 points higher. If both the VIX and Bond yields rise further, further pressure may be witnessed for index traders.   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.   Michalis Efthymiou 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.
    • LUNR Intuitive Machines stock watch, attempting to move higher off 18.64 support, target 26 area at https://stockconsultant.com/?LUNR
    • CNXC Concentrix stock watch, pullback to 47.16 triple support area with bullish indicators at https://stockconsultant.com/?CNXC
×
×
  • Create New...

Important Information

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