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

RE: [amibroker] image problem fixed



PureBytes Links

Trading Reference Links




<FONT face=Arial color=#0000ff 
size=2>Thanks, I have added a credit to my copy.
<FONT face=Arial color=#0000ff 
size=2> 
Thanks 
for the code.
 
Rik RasmussenStock Analyzer mailing list moderator<A 
href="" 
target=_blank>http://groups.yahoo.com/group/stockanalyzer/ 
<BLOCKQUOTE 
>
  <FONT face=Tahoma 
  size=2>-----Original Message-----From: Graham 
  [mailto:gkavanagh@xxxxxxxxxxxxx]Sent: Thursday, May 22, 2003 9:38 
  PMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker] 
  image problem fixed
  
  <SPAN 
  >Afraid I might be the culprit of 
  that one Rik
  <SPAN 
  > 
  
  <FONT face="Times New Roman" color=teal 
  size=3><SPAN 
  >Cheers,<FONT 
  color=teal size=3><SPAN 
  >Graham
  <FONT 
  face="Times New Roman" color=#339966 size=2><SPAN 
  ><A 
  href=""><SPAN 
  >http://groups.msn.com/ASXShareTrading
  <FONT 
  face="Times New Roman" color=#339966 size=2><SPAN 
  ><A 
  href=""><SPAN 
  >http://groups.msn.com/FMSAustralia
  <SPAN 
  >-----Original 
  Message-----From: Rik 
  Rasmussen [mailto:hrasmussen@xxxxxxxxx] <SPAN 
  >Sent: Friday, 23 May 2003 9:33 
  AMTo: 
  amibroker@xxxxxxxxxxxxxxx<SPAN 
  >Subject: RE: [amibroker] image problem 
  fixed
  <FONT face="Times New Roman" 
  size=2> 
  
  <FONT face=Arial color=blue 
  size=2>I 
  believe I copied this from a message here a while back. Do not know who to 
  give the credit to.
  
  <FONT face="Times New Roman" 
  size=2> 
  
  <FONT face=Arial color=blue 
  size=2>Would 
  the author of this ID please?
  
  <FONT face="Times New Roman" 
  size=2> 
  
  <FONT face="Times New Roman" color=green 
  size=1>//Support and resistance 
  levels.
  <FONT face="Times New Roman" color=green 
  size=1>//using 
  RSI
  <FONT face="Times New Roman" color=green 
  size=1>//Load into Indicator 
  Builder
  <FONT face="Times New Roman" color=green 
  size=1>//Sensitivity of the 
  levels can be changed with the variables
  <FONT face="Times New Roman" color=green 
  size=1>//Can test different 
  numbers live with the Param function ctrl-R with open pane
  <SPAN 
  >RSIperiod = <SPAN 
  >Param(<SPAN 
  >"RSI p",<SPAN 
  >14,<SPAN 
  >3,<SPAN 
  >30,<SPAN 
  >1);
  <SPAN 
  >EMAperiod = <SPAN 
  >Param(<SPAN 
  >"EMA p",<SPAN 
  >5,<SPAN 
  >3,<SPAN 
  >10,<SPAN 
  >1);
  <SPAN 
  >Percent = <SPAN 
  >Param(<SPAN 
  >"ZIG %",<SPAN 
  >9,<SPAN 
  >5,<SPAN 
  >15,<SPAN 
  >1);
  <SPAN 
  >HHVperiod = <SPAN 
  >Param(<SPAN 
  >"HHV p",<SPAN 
  >6,<SPAN 
  >3,<SPAN 
  >10,<SPAN 
  >1);
  <SPAN 
  >NumLine = <SPAN 
  >Param(<SPAN 
  >"Num Lines",<SPAN 
  >8,<SPAN 
  >1,<SPAN 
  >20,<SPAN 
  >1);
  <FONT face="Times New Roman" color=green 
  size=1>//Base = 
  RSI(RSIperiod);
  <SPAN 
  >Base = <SPAN 
  >EMA(<SPAN 
  >RSI(RSIperiod),EMAperiod);
  <SPAN 
  >GraphXSpace<FONT 
  size=1>=<SPAN 
  >0.5;
  <FONT face="Times New Roman" color=blue 
  size=1>Plot<FONT 
  size=1>(<SPAN 
  >C,<SPAN 
  >"",<SPAN 
  >colorBlack,<SPAN 
  >styleCandle);
  <FONT face="Times New Roman" color=maroon 
  size=1><SPAN 
  >for<FONT 
  size=1>( i = <SPAN 
  >1; i <= numline; i++ 
  )
  <SPAN 
  >{
  <SPAN 
  >ResBase = <SPAN 
  >LastValue(<SPAN 
  >Peak(Base,Percent,i));
  <SPAN 
  >SupBase = <SPAN 
  >LastValue(<SPAN 
  >Trough(Base,Percent,i));
  <FONT face="Times New Roman" color=blue 
  size=1>Plot<FONT 
  size=1>(<SPAN 
  >ValueWhen( ResBase==Base, <FONT 
  color=blue>HHV(<SPAN 
  >H,HHVperiod) ), <SPAN 
  >"Resist Level", <SPAN 
  >colorRed, <SPAN 
  >styleLine);
  <FONT face="Times New Roman" color=blue 
  size=1>Plot<FONT 
  size=1>(<SPAN 
  >ValueWhen( supbase==Base, <FONT 
  color=blue>LLV(<SPAN 
  >L,HHVperiod) ), <SPAN 
  >"Support Level", <SPAN 
  >colorGreen, <SPAN 
  >styleLine);
  <SPAN 
  >}
  <SPAN 
  >Title<FONT 
  size=1> = <SPAN 
  >Name() + <SPAN 
  >"; " + <SPAN 
  >Date() + <SPAN 
  >": Support & Resistance Levels using RSI: 
  " + <SPAN 
  >EncodeColor(<SPAN 
  >colorGreen)+ <SPAN 
  >"Support Levels are Green; "+<FONT 
  color=blue>EncodeColor(<SPAN 
  >colorRed)+ <SPAN 
  >"Resistance Levels are Red: "+<FONT 
  color=blue>EncodeColor(<SPAN 
  >colorBlack)+<SPAN 
  >"Number of lines of each ="+<FONT 
  color=blue>WriteVal(numline,<FONT 
  color=fuchsia>1) 
  ;
  
  <FONT face="Times New Roman" 
  size=2> 
  <SPAN 
  >Rik RasmussenStock Analyzer mailing list 
  moderator<A href="" 
  target=_blank>http://groups.yahoo.com/group/stockanalyzer/ 
  
  <BLOCKQUOTE 
  >
    <P class=MsoNormal 
    ><FONT 
    face=Tahoma size=2><SPAN 
    >-----Original 
    Message-----From: mrdavis9 
    [mailto:mrdavis9@xxxxxxxxxx]<SPAN 
    >Sent: Thursday, May 22, 2003 9:21 
    PMTo: 
    amibroker@xxxxxxxxxxxxxxx<SPAN 
    >Cc: jeff davis<SPAN 
    >Subject: Re: [amibroker] image problem 
    fixed
    
    <SPAN 
    >Rik, I would like to have the 
    complete code for the support and resistance levels on your QQQ chart.  
    Finding the code for them was next on my list of projects.  Thanks, Ron 
    D
    <BLOCKQUOTE 
    >
      <FONT face="Times New Roman" 
      size=2><SPAN 
  > 
  <FONT face="Times New Roman" 
  size=2><SPAN 
  ><FONT 
  face="Courier New">Send BUG REPORTS to bugs@xxxxxxxxxxxxx<FONT 
  face="Courier New"><FONT 
  face="Courier New">Send SUGGESTIONS to 
  suggest@xxxxxxxxxxxxx<FONT 
  face="Courier New">-----------------------------------------<FONT 
  face="Courier New">Post AmiQuote-related messages ONLY to: 
  amiquote@xxxxxxxxxxxxxxx (Web 
  page: <A 
  href="">http://groups.yahoo.com/group/amiquote/messages/)<FONT 
  face="Courier New">--------------------------------------------<FONT 
  face="Courier New">Check group FAQ at: <A 
  href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
  Your use of Yahoo! Groups is subject to 
  the Yahoo! Terms of 
  Service. 
  Send 
  BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
  suggest@xxxxxxxxxxxxx-----------------------------------------Post 
  AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
  href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
  group FAQ at: <A 
  href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
  Your use of Yahoo! Groups is subject to the <A 
  href="">Yahoo! Terms of Service. 







Yahoo! Groups Sponsor












Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.