PureBytes Links
Trading Reference Links
|
Time again to bother you all afl experts.
I wish to request you to see if this kind of thing is possible for amibroker users.
For those who use data without bid-ask and those who use that.
Better volume indicator
=========================
please find time to watch it.
The other thing is
Is it possible to get this tradestation code in afl, sooner or later
---------------------------------------------------------------------------------------------- tradestation code----------not afl----
//Inputs: LowVol(True), ClimaxUp(True), ClimaxDown(True), Churn(True) ?
//Variables: BarColor(Cyan);
BarColor = Color;
//if BarType > 1 OR UseUpTicks = False then begin
if C > O AND Range <> 0 then Value1 = (Range/
(2*Range+O-C))*UpTicks;
if C < O AND Range <> 0 then Value1 = ((Range+C-O)/
(2*Range+C-O))*UpTicks;
if C = O then Value1 = 0.5*UpTicks;
Value2 = UpTicks-Value1;
//End;
if BarType <= 1 AND UseUpTicks then begin
Value1 = UpTicks;
Value2 = DownTicks;
//End;
Value3 = AbsValue(Value1+Value2);
Value4 = Value1*Range;
Value5 = (Value1-Value2)*Range;
Value6 = Value2*Range;
Value7 = (Value2-Value1)*Range;
if Range <> 0 then begin
Value8 = Value1/Range;
Value9 = (Value1-Value2)/Range;
Value10 = Value2/Range;
Value11 = (Value2-Value1)/Range;
Value12 = Value3/Range;
//End;
----------------------------
please see pdf attachment as well.
Hope you will find time to get something done on this
regards
thanks in advance
rvlv
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|