PureBytes Links
Trading Reference Links
|
Yuki,
You can do it right now !!
For any indicator X try the
X=RSI();//YOUR INDICATOR
Plot(X,"",1,1);
SPACE=5/100;//calibrate the % of space
SPACEABOVE=(1+SPACE)*Highest(X);
SPACEBELOW=(1-SPACE)*Lowest(X);
//Plot(SPACEABOVE,"",1,styleNoLine);
Plot(SPACEBELOW,"",1,styleNoLine);
for a 5% graphxspaceBELOW
or the
X=RSI();//YOUR INDICATOR
Plot(X,"",1,1);
SPACE=5/100;
SPACEABOVE=(1+SPACE)*Highest(X);
SPACEBELOW=(1-SPACE)*Lowest(X);
Plot(SPACEABOVE,"",1,styleNoLine);
//Plot(SPACEBELOW,"",1,styleNoLine);
for a 5% graphxspaceABOVE.
Uncomment the // to immitate the graphxspace function.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, Yuki Taga <yukitaga@xxxx> wrote:
> Hi Salil,
>
> Monday, March 8, 2004, 12:09:28 PM, you wrote:
>
> SVG> 6. graphXspace not to take-up any space at the bottom, only at
> SVG> top.
>
> I would not like this. Perhaps two separate functions, one for the
> bottom only and one for the top only?
>
> Yuki
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|