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.

spyro

Profile Trend March + Market Profile Momentum

Recommended Posts

Profile Trend March 2008

 

 

 

 

vars: vwap1(0), close1(0), aa(0), bb(0), cc(0), firstbar(0), length(0);

 

if time=700 then aa=vwap_h;

if time=730 then bb=vwap_h;

 

cc=(aa+bb)/2;

 

if date>date[1] then begin firstbar=currentbar;

end;

length=currentbar-firstbar;

 

value1=h-aa;

value2=l-aa;

 

condition1=((h+l)/2)>cc;

condition2=((h+l)/2)

if condition1 and time>700 and time<1315 then

plot1(value1,"cc");

if condition2 and time>700 and time<1315 then

plot2(value2,"cc");

 

 

 

if time>829 and condition1 then

setplotcolor(1,green);

if time>829 and condition2 then

setplotcolor(2,red);

 

if time<829 then

setplotcolor(1,white);

if time<829 then

setplotcolor(2,white);

 

if time<829 then

setplotwidth(1,1);

if time<829 then

setplotwidth(2,1);

 

if time>829 and time<1300 then

setplotwidth(1,3);

if time>829 and time<1300 then

setplotwidth(2,3);

 

 

 

plot12(0,"0");

 

{if value1>0 then begin

setplotwidth(1,4);

end;}

 

if time=1300 then begin

setplotwidth(1,4);

end;

 

 

if time=1300 then begin

setplotwidth(2,4);

end;

 

 

 

 

 

Market Profile Momentum

 

 

vars: vwap1(0), close1(0), aa(0), cc(0), firstbar(0), length(0);

 

if time=1315 then vwap1=vwap_h;

 

if time=1315 then close1=c;

 

condition1=highestbar(h,12)condition2=lowestbar(l,12)

aa=vwap_h;

 

if date>date[1] then begin firstbar=currentbar;

end;

length=currentbar-firstbar;

 

value8=10;

value10=(highest(h,5)-lowest(aa,13))/value8;

value11=(lowest(l,5)-highest(aa,13))/value8;

 

if time=1300 and condition1 then

plot1(value10,"cc");

 

if time=1300 and condition2 then

plot1(value11,"cc");

 

plot4(2,"2");

plot5(-2,"-2");

 

if condition1 then

setplotcolor(1,green)

else

setplotcolor(1,red);

 

 

plot12(0,"0");

 

if condition1 and value10>1.8 then begin

setplotwidth(1,4);

end;

 

if condition2 and value11<-1.8 then begin

setplotwidth(1,4);

end;

 

value20=Highd(0)-Highd(1);

 

if time>629 and time<=900

and

value20>0

then

 

plot20(0.5,"Highs");

 

value21=lowd(0)-lowd(1);

 

if time>629 and time<=900

and

value21<0

then

 

plot21(-0.5,"Lows");

 

setplotcolor(20, white);

setplotcolor(21, white);

 

 

 

 

little problem when i compiled it if some one can fix it ?

 

thanks

Share this post


Link to post
Share on other sites

Spyro

 

Just quickly looking at it, as I've haven't copy & pasted it yet... but you're Conditions are incorrect as they don't have a true and a false value:

 

condition1=((h+l)/2)>cc; this one is ok

 

The following don't have a true and false value and as such it won't compile

 

condition2=((h+l)/2)

 

 

 

condition1=highestbar(h,1 2);

condition2=lowestbar(l, 12) ;

 

 

Hope this helps

 

Blu-Ray

Share this post


Link to post
Share on other sites

I must be missing something , and I appreciate you posting code, but I am lost on how to do this. When I open the text it has something that looks like programming. I tried renaming from text to pla and did not work.

Could you just post the compiled pla?

:)

Share this post


Link to post
Share on other sites

Rename the files to .xml extensions and then import into the MC editor (you might have to change the "File of Type" in the import dialog to xml for the files to show. Then run through the complier.

Share this post


Link to post
Share on other sites

hey

 

this is PLA files just rename it to PLA from TXT thats all

 

i tried to upload the PLA but the site dosent support this files so i haved to change them to TXT

 

soultrader maby u you can open the upload to PLA files too?

 

thanks

 

:)

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.


×
×
  • Create New...

Important Information

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