Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 09-29-2008, 09:47 AM   #1

Join Date: Jan 2008
Posts: 28
Ignore this user

Thanks: 5
Thanked 10 Times in 7 Posts



Profile Trend March + Market Profile Momentum

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,1 2)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
spyro is offline  
Reply With Quote
Old 09-29-2008, 10:09 AM   #2

Blu-Ray's Avatar

Join Date: Nov 2006
Location: England
Posts: 508
Ignore this user

Thanks: 164
Thanked 288 Times in 105 Posts



Re: Profile Trend March + Market Profile Momentum

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
__________________

“ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google
Blu-Ray is offline  
Reply With Quote
Old 09-30-2008, 01:20 AM   #3

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts



Re: Profile Trend March + Market Profile Momentum

correct the conditions to:

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

note that times are west coast times.
Frank is offline  
Reply With Quote
Old 09-30-2008, 01:32 AM   #4

Join Date: Feb 2008
Location: zip
Posts: 54
Ignore this user

Thanks: 20
Thanked 11 Times in 8 Posts



Re: Profile Trend March + Market Profile Momentum

Can anyone post a screenshot of what this indicator looks like. I'd like to see if its worth the port to Ninja.


thanks
justlurkin is offline  
Reply With Quote
Old 09-30-2008, 02:16 PM   #5

Join Date: Jan 2008
Posts: 28
Ignore this user

Thanks: 5
Thanked 10 Times in 7 Posts



Re: Profile Trend March + Market Profile Momentum

BLU and FARNK


thanks very much!!

it works!!


spyro is offline  
Reply With Quote
The Following User Says Thank You to spyro For This Useful Post:
Blu-Ray (09-30-2008)
Old 09-30-2008, 06:28 PM   #6

Join Date: Apr 2007
Location: Andalusia
Posts: 23
Ignore this user

Thanks: 3
Thanked 1 Time in 1 Post



Re: Profile Trend March + Market Profile Momentum

Would someone please post the completed eld. Also if possilble a chart of how used.
Thanks
moneymarkets is offline  
Reply With Quote
Old 10-02-2008, 08:05 AM   #7

Join Date: Jan 2008
Posts: 28
Ignore this user

Thanks: 5
Thanked 10 Times in 7 Posts



Re: Profile Trend March + Market Profile Momentum

i'm using MULTICHRTS i can upload the PLA files if someone wants but i dont have the ELD

spyro is offline  
Reply With Quote
Old 10-02-2008, 09:05 AM   #8

Join Date: Apr 2007
Location: Andalusia
Posts: 23
Ignore this user

Thanks: 3
Thanked 1 Time in 1 Post



Re: Profile Trend March + Market Profile Momentum

Multicharts indicator would be great, I also have Multicharts. Thanks for your Reply.
moneymarkets is offline  
Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Market Profile for YM tony1d E-mini Futures Trading Laboratory 13 06-16-2007 12:33 PM
How to use Market Profile maildigger Market Profile 21 05-19-2007 09:08 PM
Plotting Market Profile on TS dah7 Market Profile 9 03-16-2007 10:49 PM
Market Profile POC dupaski Technical Analysis 8 03-08-2007 01:05 AM
Market Profile for March 6, 2007 Soultrader Market Profile 1 03-07-2007 05:56 PM

All times are GMT -4. The time now is 05:45 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.