NexusFi: Find Your Edge


Home Menu

 





MultiCharts Daily Levels


Discussion in MultiCharts

Updated
    1. trending_up 2,130 views
    2. thumb_up 5 thanks given
    3. group 1 followers
    1. forum 4 posts
    2. attach_file 0 attachments




 
 

MultiCharts Daily Levels

 
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 250 since Feb 2012
Thanks Given: 154
Thanks Received: 1,028

I am a SC user and trying to use MC. I cannot figure out some simple stuff..... I want to :

1. Automatically plot previous day's hi and lo from PIT session on a globex 5 min chart.

2. I want to plot overnight hi and lo on globex 5 min chart

3. I want to plot open of current pit session on my globex 5 min chart.


Appreciate any help on this.

Wolf

Started this thread

Can you help answer these questions
from other members on NexusFi?
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Deepmoney LLM
Elite Quantitative GenAI/LLM
Exit Strategy
NinjaTrader
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
61 thanks
Funded Trader platforms
38 thanks
NexusFi site changelog and issues/problem reporting
26 thanks
GFIs1 1 DAX trade per day journal
19 thanks
The Program
18 thanks
 
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

Traderwolf,

does the Globex chart include or exclude the Pit session? If it's the latter the best way in my opinion is sending the values from a Pit session chart using EasyLanguage Collections.

Regards,
ABCTG

Follow me on Twitter
 
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 250 since Feb 2012
Thanks Given: 154
Thanks Received: 1,028



ABCTG View Post
Traderwolf,

does the Globex chart include or exclude the Pit session? If it's the latter the best way in my opinion is sending the values from a Pit session chart using EasyLanguage Collections.

Regards,
ABCTG

The globex chart includes the pit session.

Wolf

Started this thread
 
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

Wolf,

in this case you can track the values all from one chart. Something basic like the study below does the trick with plots and can serve as a framework. One idea for example would be to use trendlines instead of plots.

Regards,
ABCTG

 
Code
Inputs:
	PitStartTime		(830),
	PitEndTime		(1515);
	
Variables:
	HavePitSession	(false),
	HavePitReset 		(false),
	HaveGlobexReset	(false),
	DayOpen 		(0),
	PitHigh 		(0),
	PitLow			(0),
	ETHHigh		(0),
	ETHLow			(0),
	GlobexHigh		(-999999),
	GlobexLow		(+999999),
	DayHigh		(-999999),
	DayLow			(+999999);

//reset flags and daily extremes on new day
if Date <> Date[1] then
begin
	HavePitReset = false;
	
	DayHigh = -999999;
	DayLow	= +999999;	
end;


//check for pit session
HavePitSession = false;
HavePitSession = HavePitSession or (Time > PitStartTime and Time <= PitEndTime);


//in pit session track open and session extremes
if HavePitSession then
begin
	if HavePitReset = false then
	begin
		HavePitReset = true;
		
		//store the open
		DayOpen = Open;
		
		//reset globex tracking variables
		GlobexHigh = -999999;
		GlobexLow = +999999;	
	end;
	
	if High > DayHigh then
		DayHigh = High;
	if Low < DayLow then
		DayLow = Low;
		
	PitHigh = DayHigh;
	PitLow = DayLow;
end
//track globex extremes
else
begin
	if High > GlobexHigh then
		GlobexHigh = High;
	
	if Low < GlobexLow then
		GlobexLow = Low;
	
	ETHHigh = GlobexHigh;
	ETHLow = GlobexLow;
end;

//plot values	
if PitHigh <> 0 then Plot1(PitHigh, "Pit High");
if PitLow <> 0 then Plot2(PitLow, "Pit Low");
if DayOpen <> 0 then Plot3(DayOpen, "Pit Open");
if ETHHigh <> 0 then Plot4(ETHHigh, "Globex High");
if ETHLow <> 0 then Plot5(ETHLow, "Globex Low");

Follow me on Twitter
 
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 250 since Feb 2012
Thanks Given: 154
Thanks Received: 1,028

Thanks!

Wolf

Started this thread

 



Last Updated on March 4, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts