[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

*****SPAM***** Re: [EquisMetaStock Group] Re: Palmer Indicator - using Comments



PureBytes Links

Trading Reference Links

SPAM: -------------------- Start SpamAssassin results ----------------------
SPAM: This mail is probably spam.  The original message has been altered
SPAM: so you can recognise or block similar unwanted mail in future.
SPAM: See http://spamassassin.org/tag/ for more details.
SPAM: 
SPAM: Content analysis details:   (5.20 hits, 5 required)
SPAM: COMMENT            (0.8 points)  Found a Comment header
SPAM: TO_BE_REMOVED_REPLY (0.4 points)  BODY: Says: "to be removed, reply via email" or similar
SPAM: SPAM_PHRASE_05_08  (1.6 points)  BODY: Spam phrases score is 05 to 08 (medium)
SPAM:                    [score: 6]
SPAM: QUOTED_EMAIL_TEXT  (-0.8 points) BODY: Contains what looks like a quoted email text
SPAM: SUPERLONG_LINE     (0.0 points)  BODY: Contains a line >=199 characters long
SPAM: FORGED_YAHOO_RCVD  (1.4 points)  'From' yahoo.com does not match 'Received' headers
SPAM: CASHCASHCASH       (1.8 points)  Contains at least 3 dollar signs in a row
SPAM: 
SPAM: -------------------- End of SpamAssassin results ---------------------

Hi Mark,

Sure, easy, just "comment out " the last line, SignalOutput" by placing it inside curly brackets, i.e.
{SignalOutput}

This will de-activate it. Using the { ...  }  turns commands into comments. Doing this is a good way to debug your Metastock formula language code. If you have taken some care to write a long piece of code and don't want to delete it, but something isn't working quite right, just try commenting out parts until you isolate what is wrong.

Best wishes,
TonyM




----- Original Message ----
From: markumansky <no_reply@xxxxxxxxxxxxxxx>
To: equismetastock@xxxxxxxxxxxxxxx
Sent: Sunday, July 1, 2007 7:34:33 AM
Subject: [EquisMetaStock Group] Re: Palmer Indicator

Hi Tony,

Thanks for your email and comments. I am testing the indicator
mentioned below, and was wondering if its possible to remove the
buy/sell signals from it? 

Thanks in advance.
Mark

--- In equismetastock@ yahoogroups. com, Tony M <t4tonym@xxx > wrote:
>
> Hi Mark,
> 
> Preston's formula does exactly what you asked for, so I'm not quite
sure why you say that it's "not exactly what you were looking for" 
..... ??? However an alternative, longer and less elegant (but
perhaps more "English language-like" ) coding of your concept might be:
> 
> {$$$$$$$$$$$ $$$$$$$$$ $$$$$$$$$ $$$$ :-)}
> HighestVolume45d: = HHV(V,45);
> LowestVolume45d: = LLV(V,45);
> VolRange:= HighestVolume45d - LowestVolume45d;
> Palmer:= 100*V/(VolRange + 0.000001);
> Smoothed:=Mov( Palmer,5, E);
> BuyThreshold: =67;
> SellThreshold: =33;
> BuySignal:=100;
> SellSignal:= 0;
> SignalOutput: = If(Smoothed> BuyThreshold, BuySignal,
If(Smoothed< SellThreshold, SellSignal, 50));
> {Now display results: 100= (your idea of) "Buy", 50=Null, 0=(your
idea of) "Sell"}
> Smoothed;
> SignalOutput
> {$$$$$$$$$$$ $$$$$$$$$ $$$$$$$$$ $$$ :-)}
> 
> Attached is a chart for you showing Apple Computer (APPL) price in
the middle window and
> in the bottom window the actual volume (dark red bars), your
smoothed "Palmer Indicator" (bright red line),
> and your proposed indicator (light blue line).
> 
> What you can see is that the indicator response due to high volume 
(your proposed "Buy" signal) appears to make sense and to correspond
to price turning points, either tops OR bottoms, but the low volume
response (your proposed "Sell" signal) really does not correspond to
anything.
> 
> This is because the big price action occurs when a lot of people (or
a few people with very big orders) are in the market and the volume is
high. Therefore I suggest that you re-examine your indicator, forget
about the low volume threshold (because nothing much is happening
then), try adjusting the high volume threshold value a bit, and use
this high volume response not as a buy indicator (your original
concept) but rather as an an indicator for TURNING POINTS, which could
be EITHER tops or bottoms.
> 
> If you want to read an intersting book about using volume to help
your trading, you might try Donald Cassidy's book "Trading on Volume -
The Key to Identifying and Profiting from Stock Price Reversals".
(McGraw Hill publishers, 2002).
> 
> 
> Happy trading,
> Cheers,
> TonyM 
> 
> 
> ----- Original Message ----
> From: markumansky <no_reply@xxxxxxxxxx s.com>
> To: equismetastock@ yahoogroups. com
> Sent: Thursday, May 24, 2007 3:50:36 PM
> Subject: [EquisMetaStock Group] Re: Palmer Indicator
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Preston,
> 
> 
> 
> Not exactly what i was looking for but thank you for your suggestion
> 
> and assistance. Its very much appreciated! !!
> 
> 
> 
> Regards,
> 
> Mark
> 
> 
> 
> --- In equismetastock@ yahoogroups. com, pumrysh <no_reply@ .> wrote:
> 
> >
> 
> > Mark,
> 
> > 
> 
> > My bad! Last line was wrong. Should be:
> 
> > 
> 
> > {Normalized Volume}
> 
> > Ind:= Volume;
> 
> > Npds:=Input( "periods to normalize",
> 
> > 1,500,45);
> 
> > Norm:=(Ind-LLV( Ind,Npds) )
> 
> > /(HHV(Ind,Npds) -LLV(Ind, Npds)+.0000001) *100;
> 
> > Norm; Mov(Norm,5,simple) ;67;33;
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > Enjoy,
> 
> > 
> 
> > 
> 
> > Preston
> 
> > 
> 
> > 
> 
> > 
> 
> > --- In equismetastock@ yahoogroups. com, pumrysh <no_reply@> wrote:
> 
> > >
> 
> > > Mark,
> 
> > > 
> 
> > > Hope you've been following the Zero Lag MACD thread with Paul and 
> 
> > I. 
> 
> > > You can do the same thing with volume like this:
> 
> > > 
> 
> > > {Normalized Volume}
> 
> > > Ind:= Volume;
> 
> > > Npds:=Input( "periods to normalize",
> 
> > > 1,500,45);
> 
> > > Norm:=(Ind-LLV( Ind,Npds) )
> 
> > > /(HHV(Ind,Npds) -LLV(Ind, Npds)+.0000001) *100;
> 
> > > Norm; Mov(Volume,5, simple);67; 33;
> 
> > > 
> 
> > > Hope this helps,
> 
> > > 
> 
> > > Preston
> 
> > > 
> 
> > > 
> 
> > > 
> 
> > > 
> 
> > > --- In equismetastock@ yahoogroups. com, markumansky <no_reply@> 
> 
> > > wrote:
> 
> > > >
> 
> > > > Can someone help me build an indicator that would show me current
> 
> > > > volume relative to recent history. The theory goes like this:
> 
> > > > - The current volume is divided by (45-day highest volume minus 
> 
> > 45-
> 
> > > day
> 
> > > > lowest volume times 100) to yield a percentage of range. 
> 
> > > > - Then averaged the percent volume over 5 days to smooth it and 
> 
> > > better
> 
> > > > see a trend. 
> 
> > > > - Then, put a Buy alerts at 67% and a Sell 33%. 
> 
> > > > 
> 
> > > > Any coding assistance would be greatly appreciated! !!!!!
> 
> > > > 
> 
> > > > Thanks!
> 
> > > > Mark
> 
> > > >
> 
> > >
> 
> >
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> <!--
> 
> #ygrp-mlmsg {font-size:13px; font-family: arial, helvetica, clean,
sans-serif;}
> #ygrp-mlmsg table {font-size:inherit; font:100% ;}
> #ygrp-mlmsg select, input, textarea {font:99% arial, helvetica,
clean, sans-serif;}
> #ygrp-mlmsg pre, code {font:115% monospace;}
> #ygrp-mlmsg * {line-height: 1.22em;}
> #ygrp-text{
> font-family: Georgia;
> }
> #ygrp-text p{
> margin:0 0 1em 0;}
> #ygrp-tpmsgs{
> font-family: Arial;
> clear:both;}
> #ygrp-vitnav{
> padding-top: 10px;font- family:Verdana; font-size: 77%;margin: 0;}
> #ygrp-vitnav a{
> padding:0 1px;}
> #ygrp-actbar{
> clear:both;margin: 25px
0;white-space: nowrap;color: #666;text- align:right; }
> #ygrp-actbar .left{
> float:left;white- space:nowrap; }
> .bld{font-weight: bold;}
> #ygrp-grft{
> font-family: Verdana;font- size:77%; padding:15px 0;}
> #ygrp-ft{
> font-family: verdana;font- size:77%; border-top: 1px solid #666;
> padding:5px 0;
> }
> #ygrp-mlmsg #logo{
> padding-bottom: 10px;}
> 
> #ygrp-vital{
> background-color: #e0ecee;margin- bottom:20px; padding:2px 0 8px 8px;}
> #ygrp-vital #vithd{
>
font-size:77% ;font-family: Verdana;font- weight:bold; color:#333; text-transform: uppercase; }
> #ygrp-vital ul{
> padding:0;margin: 2px 0;}
> #ygrp-vital ul li{
> list-style-type: none;clear: both;border: 1px solid #e0ecee;
> }
> #ygrp-vital ul li .ct{
>
font-weight: bold;color: #ff7900;float: right;width: 2em;text- align:right; padding-right: .5em;}
> #ygrp-vital ul li .cat{
> font-weight: bold;}
> #ygrp-vital a {
> text-decoration: none;}
> 
> #ygrp-vital a:hover{
> text-decoration: underline; }
> 
> #ygrp-sponsor #hd{
> color:#999;font- size:77%; }
> #ygrp-sponsor #ov{
> padding:6px 13px;background- color:#e0ecee; margin-bottom: 20px;}
> #ygrp-sponsor #ov ul{
> padding:0 0 0 8px;margin:0; }
> #ygrp-sponsor #ov li{
> list-style-type: square;padding: 6px 0;font-size: 77%;}
> #ygrp-sponsor #ov li a{
> text-decoration: none;font- size:130% ;}
> #ygrp-sponsor #nc {
> background-color: #eee;margin- bottom:20px; padding:0 8px;}
> #ygrp-sponsor .ad{
> padding:8px 0;}
> #ygrp-sponsor .ad #hd1{
>
font-family: Arial;font- weight:bold; color:#628c2a; font-size: 100%;line- height:122% ;}
> #ygrp-sponsor .ad a{
> text-decoration: none;}
> #ygrp-sponsor .ad a:hover{
> text-decoration: underline; }
> #ygrp-sponsor .ad p{
> margin:0;}
> o {font-size:0; }
> .MsoNormal {
> margin:0 0 0 0;}
> #ygrp-text tt{
> font-size:120% ;}
> blockquote{margin: 0 0 0 4px;}
> .replbq {margin:4;}
> -->
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
____________ _________ _________ _________ _________ _________ _
> Be a better Globetrotter. Get better travel answers from someone who
knows. Yahoo! Answers - Check it out.
> http://answers. yahoo.com/ dir/?link= list&sid= 396545469
> 
> [Non-text portions of this message have been removed]
>





       
____________________________________________________________________________________
Got a little couch potato? 
Check out fun summer activities for kids.
http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz 

[Non-text portions of this message have been removed]



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/equismetastock/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/equismetastock/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:equismetastock-digest@xxxxxxxxxxxxxxx 
    mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx

<*> To unsubscribe from this group, send an email to:
    equismetastock-unsubscribe@xxxxxxxxxxxxxxx

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/