Forgotten Your Password?
Connect with Facebook
Frequent Questions

Coding Forum Collaborate, receive help, or discuss coding related issues.

Coding Forum Thread, Profile Trend March + Market Profile Momentum in Trading Resources; 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; ...
Reply
2 2 Attachment(s)
 
LinkBack Thread Tools Display Modes

Profile Trend March + Market Profile Momentum  

  #1  
Old 09-29-2008, 08:47 AM
spyro
 
Join Date: Jan 2008
Location: haifa
Posts: 28
Thanks: 5
Thanked 8 Times in 6 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,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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #2  
Old 09-29-2008, 09:09 AM
Blu-Ray's Avatar
Blu-Ray
is only knowledgable in Easy Language
 
Join Date: Nov 2006
Location: England
Posts: 507
Thanks: 162
Thanked 253 Times in 100 Posts
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #3  
Old 09-30-2008, 12:20 AM
Frank
 
Join Date: Jan 2008
Location: San Francisco
Posts: 394
Thanks: 17
Thanked 332 Times in 156 Posts
correct the conditions to:

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

note that times are west coast times.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #4  
Old 09-30-2008, 12:32 AM
justlurkin
 
Join Date: Feb 2008
Location: zip
Posts: 54
Thanks: 20
Thanked 11 Times in 8 Posts
Can anyone post a screenshot of what this indicator looks like. I'd like to see if its worth the port to Ninja.


thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #5  
Old 09-30-2008, 01:16 PM
spyro
 
Join Date: Jan 2008
Location: haifa
Posts: 28
Thanks: 5
Thanked 8 Times in 6 Posts
BLU and FARNK


thanks very much!!

it works!!


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to spyro For This Useful Post:
Blu-Ray (09-30-2008)

Re: Profile Trend March + Market Profile Momentum  

  #6  
Old 09-30-2008, 05:28 PM
moneymarkets
 
Join Date: Apr 2007
Location: Andalusia
Posts: 17
Thanks: 1
Thanked 1 Time in 1 Post
Would someone please post the completed eld. Also if possilble a chart of how used.
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #7  
Old 10-02-2008, 07:05 AM
spyro
 
Join Date: Jan 2008
Location: haifa
Posts: 28
Thanks: 5
Thanked 8 Times in 6 Posts
i'm using MULTICHRTS i can upload the PLA files if someone wants but i dont have the ELD

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #8  
Old 10-02-2008, 08:05 AM
moneymarkets
 
Join Date: Apr 2007
Location: Andalusia
Posts: 17
Thanks: 1
Thanked 1 Time in 1 Post
Multicharts indicator would be great, I also have Multicharts. Thanks for your Reply.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #9  
Old 10-02-2008, 09:27 AM
spyro
 
Join Date: Jan 2008
Location: haifa
Posts: 28
Thanks: 5
Thanked 8 Times in 6 Posts
Here it is just rename the files to pla from txt

and edit the code change the time like yours...

Attached Files
File Type: txt market profile momentum.txt (6.2 KB, 95 views)
File Type: txt profile trend.txt (5.6 KB, 74 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Profile Trend March + Market Profile Momentum  

  #10  
Old 10-03-2008, 08:07 PM
moneymarkets
 
Join Date: Apr 2007
Location: Andalusia
Posts: 17
Thanks: 1
Thanked 1 Time in 1 Post
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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



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


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


» »

» Invite Friends