NexusFi: Find Your Edge


Home Menu

 





MultiCharts Daily Levels


Discussion in MultiCharts

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




 
Search this Thread
  #1 (permalink)
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 249 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 Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
Roland Garros Final Day: $3M on Zverev at 80.5% -- Leban …
Prediction Markets & Event Contracts
Trump Media to sell instant access to market-moving soci …
Traders Hideout
CME Raises Energy Futures Margins After Iran-War Volatil …
Commodities
April Jobs Beat Flips Fed Hike Odds Past 52% for First T …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
16 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
2 thanks
30 Sessions
1 thanks
CME Expands 24/7 Trading to WTI Crude Oil and Gold -- We …
1 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X Reply With Quote
  #3 (permalink)
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 249 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 Reply With Quote
  #4 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X Reply With Quote
  #5 (permalink)
 
Traderwolf's Avatar
 Traderwolf 
Raleigh,NC
 
Experience: None
Platform: Versatile and Stable
Broker: Reliable and Accurate
Trading: Money
Posts: 249 since Feb 2012
Thanks Given: 154
Thanks Received: 1,028

Thanks!

Wolf


Started this thread Reply With Quote




Last Updated on March 4, 2014


© 2026 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 - Downloads - Top
no new posts