Larry William's Indicator Required - Page 2 - Traders Laboratory
Forum Guidelines | Contact Us
Home

Go Back   Traders Laboratory > Trading Resources > Trading Indicators > Coding Forum

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

Reply
 
LinkBack (1) Thread Tools Display Modes
  #11 (permalink)  
Old 03-08-2007, 11:22 AM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,168
Thanks: 0
Thanked 41 Times in 30 Posts
Re: Larry William's Indicator Required

thanks Inside ¡¡ I will take a look at it... maybe we can replace that double data for close...


question to metastock users : do you use two symbols together for this indicator ? spread type thing.... cheers Walter.


also, can we see a screenshot from metastock, how it looks like ... thanks

Reply With Quote
  #12 (permalink)  
Old 03-08-2007, 04:23 PM
torero's Avatar
torero has no status.

Trader Specs
 
Join Date: Oct 2006
Location: SPAIN
Posts: 1,330
Thanks: 44
Thanked 43 Times in 29 Posts
Re: Larry William's Indicator Required

Data1 is quotes/charts of one instrument and data2 is quotes/charts of another instrument.

__________________
"It's against human nature to succeed in the markets"-- Newbie Trader Lounge
Reply With Quote
  #13 (permalink)  
Old 03-08-2007, 04:52 PM
Knyyt's Avatar
Knyyt has no status.

Trader Specs
 
Join Date: Feb 2007
Location: New Jersey
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Larry William's Indicator Required

niShant-

Found this on the net for you.

Equis International Online Community - Re:

Other then that not sure.

Knyyt

Reply With Quote
  #14 (permalink)  
Old 03-08-2007, 09:36 PM
nishant has no status.

Trader Specs
 
Join Date: Sep 2006
Location: India
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
This member is the original thread starter. Re: Larry William's Indicator Required

Thanks for all your efforts Knyyt.
But i've tried that Will Spread thing before. The said explanation wasn't clear to me. I couldn't plot the willspread. For me the explanation was to vague. Or even if the explanation on Willspread was good enough, i couldnt digest.
Anyways, thanks again!
Nishant

Reply With Quote
  #15 (permalink)  
Old 03-09-2007, 07:54 AM
insideday has no status.

 
Join Date: Dec 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Larry William's Indicator Required

Quote:
View Post
Data1 is quotes/charts of one instrument and data2 is quotes/charts of another instrument.
Sorry for the confusion, that was clear. What i mean is that i dont know the underlyings.

Willimas Will-Spread is based on the Spread between Gold an Bonds, with Bonds as Data 1. But i dont know what he trades with Will-Val.

Reply With Quote
  #16 (permalink)  
Old 03-09-2007, 08:00 AM
torero's Avatar
torero has no status.

Trader Specs
 
Join Date: Oct 2006
Location: SPAIN
Posts: 1,330
Thanks: 44
Thanked 43 Times in 29 Posts
Re: Larry William's Indicator Required

I don't have the book in front of me but I think it was S&P 500? I'll double-check to be sure.

__________________
"It's against human nature to succeed in the markets"-- Newbie Trader Lounge
Reply With Quote
  #17 (permalink)  
Old 03-09-2007, 04:42 PM
Anonymous's Avatar
Anonymous has no status.

 
Join Date: Jan 2007
Posts: 458
Thanks: 13
Thanked 101 Times in 60 Posts
Re: Larry William's Indicator Required

Quote:
View Post
Actually Knytt, i use 2 different versions of Metastock. Version 7.0 for RealTime Trading and Version 8.0 for EoD Analysis. So i need for both basically. I'm tryin hard making all the indicators especially WillVal. I feel its an exceptionally nice indicator.
Actually i happen to attend Larry Williams Seminar. So got exposure to all the indicators he uses. I'll collect and give you soon the data as regards the settings which Larry uses (if in case you dont know) required to make WillVal indicator. Will search my notebook soon and provide you.

Nishant
What do you think of MetaStock for real-time trading? It is the one platform where I understand the programming language. I don't want to spend time learning another one (I find easy language isn't all that easy). Is it suitable for intra day index trading?

Reply With Quote
  #18 (permalink)  
Old 03-09-2007, 05:09 PM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,168
Thanks: 0
Thanked 41 Times in 30 Posts
Re: Larry William's Indicator Required

Pivot : metastock programing can get very limited compared to TS... that was my experience... relationships between variables can eventually be conditioned to some amount... also there is no custom functions creation... etc etc etc.... once you programed on TS its dificult to get any better... cheers Walter.

Reply With Quote
  #19 (permalink)  
Old 03-10-2007, 01:54 AM
nishant has no status.

Trader Specs
 
Join Date: Sep 2006
Location: India
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
This member is the original thread starter. Re: Larry William's Indicator Required

Quote:
View Post
What do you think of MetaStock for real-time trading? It is the one platform where I understand the programming language. I don't want to spend time learning another one (I find easy language isn't all that easy). Is it suitable for intra day index trading?
Its everyone's own opinion basically as regards the software. But to me metastock happens to be more user friendly. Its been three years and atleast for me its been a good experience. Very easy to use! And i primarily trade Index Futures only (Nifty Futures happens to be tradeable Index here in India). So I really find it suitable for intra day trading.

Reply With Quote
  #20 (permalink)  
Old 03-11-2007, 05:13 AM
Sixer has no status.

 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Larry William's Indicator Required

PRO GO I:
var: prof(0),pub(0);
Prof=Average(O - C,7);
Value1 = (((Summation( Prof - Lowest(Prof,7),7)) / Summation((highest(Prof,7 ) - Lowest(Prof,7)),7)))*100;
Pub=Average(O - C[1],7);
Value2 = (((Summation( Pub - Lowest(Pub,7),7)) / Summation((highest(Pub,7) - Lowest(Pub,7)),7)))*100;
Plot1( Value1, "Prof" ) ;
Plot2( Value2, "Public" ) ;
Plot3( 25, "25" ) ;
Plot4( 75, "75" ) ;


PRO GO II:
var: prof(0),pub(0);
Prof=XAverage(O - C,14);
Pub=XAverage(O - C[1],14);
Plot1( Prof, "Prof" ) ;
Plot2( Pub, "Public" ) ;
Plot3( 0, "0" ) ;



PRO GO III:
Input: Period (21);
var: prof(0),pub(0);
Prof=XAverage(O - C,Periode)*200;
Pub=XAverage(O - C[1],Periode)*200;
Plot1( Prof, "Prof" ) ;
Plot2( Pub, "Public" ) ;
Plot3( 0, "0" ) ;

Enjoy !!

Sixer

Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f56/larry-williams-indicator-required-1338.html
Posted By For Type Date
Coding Forum [Archive] - Traders Laboratory - Active Traders Forum This thread Refback 10-27-2007 04:49 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 On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How much analysis is required as a trader? pierre Market Analysis 7 11-22-2006 05:32 PM


All times are GMT -4. The time now is 07:33 AM.

 

 
 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76