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.

chrisleonard

Help with Code

Recommended Posts

Hi,

 

Below are some floor pivs that i like, can someone help me add a label to the half piv points?

 

At the moment it just shows the price nothing else, i would like to add mid piv before that!

 

Thanks

 

 

Chris

 

 

 

[LegacyColorValue = true]; 

input: PivotType(0),
BarsBack(60),
ShowClose(1),
ShowOpen(1),
ShowHalfPivots(1),
ShowLevel(0),
DaysBack(1),
NewDayTM(1510),
RoundLevels(false),
DecPlaces(2),
SupResType(0);

var: theday(0);
var: Maxcnt(11);
array:
TL[12](-1),Val[12](-1),
Color[12](6),Label[12]("L"),FTextID[12](-1), TLabel[12](" ");

var: cnt(0),sdate(0),stime(0),fPivot(0),twOpen(0),theRange(0);

if lastbaronchart then begin

if time >= NewDayTM then theday = 0  else theday = 1;
theday = theday + DaysBack-1;
if theday <= 0 then begin 
theday = 0;
twOpen = 0;
end else twopen = theday-1;  {make sure this weeks open isn't <0}

{store weekly Open and Close that we care about}
Val[10] = CloseD(theday);
if PivotType >0 and PivotType <4 then Val[11] = OpenD(twopen) else Val[11] = OpenD(theday);

{calculate central pivot based on pivot type}{not sure how usefull some of these might be}
if      PivotType = 1 then fPivot = (HighD(theday) + LowD(theday) + Val[11]) /3
else if PivotType = 2 then fPivot = (HighD(theday) + LowD(theday) + Val[11] + Val[11]) /4
else if PivotType = 3 then fPivot = (HighD(theday) + LowD(theday) + Val[10] + Val[11]) /4
else if PivotType = 4 then fPivot = (HighD(theday) + LowD(theday) + Val[10] + Val[11]) /4
else fPivot = (HighD(theday) + LowD(theday) + Val[10]) /3; {default standard Pivot}

if SupResType = 1 then begin {seems like there is always a little different way to do these}
theRange = (HighD(theday) - LowD(theday))/2;
VAl[1] = fPivot;
VAl[2] = fPivot + theRange; {R1}
VAl[3] = fPivot - theRange; {S1}

VAl[4] = VAl[2] + theRange; {R2}
VAl[5] = VAl[3] - theRange; {S2}

VAl[6] = VAl[4] + theRange; {R3}
VAl[7] = VAl[5] - theRange; {S3}
VAl[8] = VAl[6] + theRange; {R4}
VAl[9] = VAl[7] - theRange; {S4}
end
else begin
VAl[1] = fPivot;
VAl[2] = fPivot + fPivot - LowD(theday); {R1}
VAl[3] = fPivot + fPivot - HighD(theday); {S1}

VAl[4] = fPivot + VAl[2] - VAl[3]; {R2}
VAl[5] = fPivot - VAl[2] + VAl[3]; {S2}

VAl[6] = fPivot + VAl[4] - VAl[3]; {R3}
VAl[7] = fPivot - VAl[4] + VAl[3]; {S3}
VAl[8] = fPivot + VAl[4] - VAl[5]; {R4}
VAl[9] = fPivot - VAl[4] + VAl[5]; {S4}
end;

if RoundLevels then begin
for cnt = 1 to 11 begin
	val[cnt] = roundInst(val[cnt]);
end;
end;

Color[1] = LightGray;
Color[2] = Darkred;
Color[3] = Darkgreen;
Color[4] = Darkred;
Color[5] = Darkgreen;
Color[6] = Darkred;
Color[7] = Darkgreen;
Color[8] = Darkred;
Color[9] = Darkgreen;
Color[10] = Yellow;
Color[11] = DarkBrown;

TLabel[1] = "Daily Pivot - ";
TLabel[2] = "Daily R1 - ";
TLabel[3] = "Daily S1 - ";
TLabel[4] = "Daily R2 - ";
TLabel[5] = "Daily S2 - ";
TLabel[6] = "Daily R3 - ";
TLabel[7] = "Daily S3 - ";
TLabel[8] = "Daily R4 - ";
TLabel[9] = "Daily S4 - ";
TLabel[10] = "Prev Day Close - ";
TLabel[11] = "Prev Day Open - ";


sdate = Date[barsBack];
stime = Time[barsBack];


for cnt= 1 to Maxcnt begin
if cnt < 10 or (ShowClose <> 0 and cnt = 10) or (ShowOpen <> 0 and cnt = 11) then begin
	if TL[cnt] < 0 then begin {dosn't exist, create new TL}
		TL[cnt] = TL_New (sdate, stime, Val[cnt],
			date, time , Val[cnt]);
		TL_SetColor (TL[cnt], Color[cnt]);
		if cnt >= 10 then TL_SetStyle (TL[cnt], Tool_Dashed)
			else TL_SetStyle (TL[cnt], Tool_Dashed);
	end;
	if TL_Exist(TL[cnt]) then begin {exist}
		TL_SetEnd (TL[cnt], date, time , Val[cnt]);
		TL_SetBegin (TL[cnt], sdate, stime, Val[cnt]); {reset TL}
		TL_SetExtRight(TL[cnt],true);
	end;

	{do text stuff}
	if FTextID[cnt] < 0 then begin  {is new}
		FTextID[cnt] = Text_New(sdate, stime, Val[cnt], "zzz");
		Text_SetStyle(FTextID[cnt], 1, 2);
		Text_SetColor(FTextID[cnt], Color[cnt]);
	end;
	if FTextID[cnt] >= 0 then begin  {already exists}
		Text_SetLocation(FTextID[cnt], sdate, stime, Val[cnt]);
		Text_SetString(FTextID[cnt],TLabel[cnt] + NumToStr(Val[cnt], DecPlaces) + " " );
	end;
end; {count < 6, etc.}
end; {cnt}

Array: HalfTL[9](-1),HalfVal[9](0),HTextID[9](-1);

if ShowHalfPivots <> 0 then begin
HalfVal[1] = ((Val[4] - Val[2])/2) + Val[2];
HalfVal[2] = ((Val[2] - Val[1])/2) + Val[1];
HalfVal[3] = ((Val[1] - Val[3])/2) + Val[3];
HalfVal[4] = ((Val[3] - Val[5])/2) + Val[5]; {s1-s2}
HalfVal[5] = ((Val[4] - Val[6])/2) + Val[6];
HalfVal[6] = ((Val[5] - Val[7])/2) + Val[7]; {s2-s3}
HalfVal[7] = ((Val[6] - Val[8])/2) + Val[8];
HalfVal[8] = ((Val[7] - Val[9])/2) + Val[9]; {s3-s4}

if RoundLevels then begin
	for cnt = 1 to 8 begin
		HalfVal[cnt] = roundInst(HalfVal[cnt]);
	end;
end;

for cnt= 1 to 8 begin
	if HalfTL[cnt] < 0 then begin {dosn't exist, create new TL}
		HalfTL[cnt] = TL_New (sdate, stime, HalfVal[cnt],
		date, time , HalfVal[cnt]);
		TL_SetColor (HalfTL[cnt], DarkGray);
		TL_SetStyle (HalfTL[cnt], Tool_Dashed);
	end;
	if TL_Exist(HalfTL[cnt]) then begin {exist}
		TL_SetEnd (HalfTL[cnt], date, time , HalfVal[cnt]);
		TL_SetBegin (HalfTL[cnt], sdate, stime, HalfVal[cnt]); {reset TL}
		TL_SetExtRight(HalfTL[cnt],true);

	end;

	{do text stuff}
	if HTextID[cnt] < 0 then begin  {is new}
		HTextID[cnt] = Text_New(sdate, stime, HalfVal[cnt], "zzz");
		Text_SetStyle(HTextID[cnt], 1, 2);
		Text_SetColor(HTextID[cnt], DarkGray);
	end;
	if HTextID[cnt] >= 0 then begin  {already exists}
		Text_SetLocation(HTextID[cnt], sdate, stime, HalfVal[cnt]);
		Text_SetString(HTextID[cnt], NumToStr(HalfVal[cnt], DecPlaces) + " " );
	end;
end; {cnt}
end; {ShowHalfPivots}

end; {last bar}

if ShowLevel > 0 and ShowLevel <= 4 then begin
noplot(2);
noplot(3);
if ShowLevel = 1 then begin
	Plot2[-1](Val[2] + .5,"h");
	Plot3[-1](Val[3] - .5,"l");
end
else if ShowLevel = 2 then begin
	Plot2[-1](Val[4] + .5,"h");
	Plot3[-1](Val[5] - .5,"l");
end
else if ShowLevel = 3 then begin
	Plot2[-1](Val[6] + .5,"h");
	Plot3[-1](Val[7] - .5,"l");
end
else if ShowLevel = 4 then begin
	Plot2[-1](Val[8] + .5,"h");
	Plot3[-1](Val[9] - .5,"l");
end;

end;

Share this post


Link to post
Share on other sites
Hi, I have sorted this now.

 

Thanks Anyway

 

Chris

 

 

as a courtesy to the community, you should post your solution, so that everybody can learn from it.

Share this post


Link to post
Share on other sites

No Probs,

 

I kind of bodged it but it did the job!!

 

i added

 

MLabel[1] = "Mid Point - ";

 

then i changed the string from

 

Text_SetString(HTextID[cnt], NumToStr(HalfVal[cnt], DecPlaces) + " " );

 

To

 

Text_SetString(HTextID[cnt], MLabel[1] + NumToStr(HalfVal[cnt], DecPlaces) + " " );

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

    • Date: 11th June 2024. Market News – Inflation reports dominates! Economic Indicators & Central Banks:   The selloff in Treasuries continued ahead of the FOMC decision tomorrow, though losses were moderate. Disappointment that the continued strength in the labor market will push back any easing until at least September at the earliest continued to weigh. Chinese stocks dropped after traders returned from a long weekend, weighed down by weak travel spending and renewed concerns over the property sector, raising doubts about the sustainability of China’s economic recovery. Developer Dexin China Holdings gets liquidation order from a Hong Kong court adding to a growing number of legal victories for creditors involving overdue debt. Geopolitical risks also affected shares of electric vehicle makers as traders awaited the European Commission’s decision on provisional duties expected this week. Australian business confidence turned negative in May, and conditions slipped to below-average levels, indicating that elevated interest rates and a worsening consumer outlook are weighing on the corporate sector. Markets are also closely monitoring potential fallout from political upheavals in Europe. Asian & European Open: All three major indexes closed higher on Monday, with the S&P500 and Nasdaq both hitting new records. The Dow ended the day up about 0.2%, following a modest finish to a winning week. The CSI 300 Index of mainland shares fell up to 1.4% after reopening from the Dragon Boat Festival holiday, while Hong Kong-listed Chinese shares were among Asia’s biggest decliners, dropping as much as 2%. Apple Inc. sank despite unveiling new artificial intelligence features. The company’s suppliers also dropped after Apple’s latest AI platform was seen as disappointing. Billionaire Elon Musk stated he would ban Apple devices from his companies if OpenAI’s software is integrated at the operating system level, calling it a security risk. Financial Markets Performance: The USDIndex has caught a bid with the push back to rate cut expectations. It closed at 105.150, back with a 105 handle for the first time since May 14. The EURUSD stalled at 1.0770, while GBPUSD declined slightly today after the tight labor data. USOIL held the biggest jump since March ahead of an OPEC report that will provide a snapshot on the market outlook. 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 on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Andria Pichidi Market Analyst 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 FX and CFDs 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.
    • WGS GeneDx stock strong trend, watch for a continuation breakout above 28.32, https://stockconsultant.com/?WGS
    • PSFE Paysafe stock narrow range breakout watch above 18.85, https://stockconsultant.com/?PSFE
    • GTE Gran Tierra Energy stock great day! https://stockconsultant.com/?GTE
    • GM General Motors stock huge top of range breakout, from Stocks To Watch, https://stockconsultant.com/?GM  
×
×
  • Create New...

Important Information

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