NexusFi: Find Your Edge


Home Menu

 





MultiCharts Daily Levels


Discussion in MultiCharts

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




 
Search this Thread

MultiCharts Daily Levels

  #1 (permalink)
 
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 Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Cheap historycal L1 data for stocks
Stocks and ETFs
Quantum physics & Trading dynamics
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629

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 Reply With Quote
  #3 (permalink)
 
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 Reply With Quote
  #4 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629

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 Reply With Quote
  #5 (permalink)
 
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 Reply With Quote




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