any one have this afl

KelvinHand

Well-Known Member
#41
:D
I'm astonished that you are so cheap too. I thought you would be more respectful in regards to other people's work.





:D

Exactly
JAYAKUMAR1975 brought the program, unfortunately the plugin expiry.
The website is no longer exist, If he can contact the author to extend it, then no need to come to this forum for help.

If that is the case what you said, then I will make myself very expensive:-
- Those need help on modification of AFL, need proof to shown use of legal amibroker
- Those need modification AFL need to seek the approval from the author.
- Those AFL from wisestock/amibroker website cannot make any modification.
- Those MT4 conversion, i shell not do the decompilation for any people here.
- Those request for Metastock/Tradstation/MT4 whatever software to AMI conversion or Ami to other software, i shell not do it for anyone here anymore.

:thanx: for your comment.
:thumb:
 
Last edited:

KelvinHand

Well-Known Member
#43
no solution and all talks for this .

with more than 40 replies and 2000 views no one giving any solution .

I had gone through the analysing process of the plugin dll, and convey clearly to you that author had the expiry date control.

So there is no free solution.

BUT there is a solution.

Since you needed it, then contact the author given in this e-mail: [email protected] in that AFL you provided, pay his money and get the system.

So how you give this kind of comment, ignore people effort.
 
#44
I had gone through the analysing process of the plugin dll, and convey clearly to you that author had the expiry date control.

So there is no free solution.

BUT there is a solution.

Since you needed it, then contact the author given in this e-mail: [email protected] in that AFL you provided, pay his money and get the system.

So how you give this kind of comment, ignore people effort.
like most retail traders and with the success in stock market i had . paying

20000.00 per month is still a far cry for me ,

this forum i approach if the problem could be sorted out !:confused:
 
#49
Hi Kelvinhand,

Cannot PM you so posting on this forum thread.. Hope you see it... I needed an intraday cumulative volume scanner AFL - it displays cumulative volume bars on chart and same can be scanned with a Filter say - Filter Cumvol > 100000 or so.... Will be much grateful for your help...
 
#50
Afl plz help (connorsrsi)

PLZZZZ can any members help me to include volume in the following AFL...thanx in advance,...regards

paramLenRSI = Param("RSI Closes Length", 3, 2, 100, 1);
paramLenUD = Param("RSI UpClose Length", 2, 2, 100, 1);
paramLenRank = Param("PercentRank Length", 100, 10, 252, 1);
paramAverage = Param("Average", 5, 1, 100, 1);

function ConnorsRSI(lenRSI, lenUD, lenROC)
{
upDays = BarsSince(C <= Ref(C,-1));
downDays = BarsSince(C >= Ref(C,-1));
updownDays = IIf(upDays > 0, upDays, IIf(downDays > 0, -downDays, 0));
crsi = ( PercentRank(ROC(C,1), lenROC) + RSIa(updownDays,lenUD) +
RSI(lenRSI))/3;
return crsi;
}

function ClosingRange() {
return ((C - L) / (H - L)) * 100;
}

Plot( ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank)
, "ConnorsRSI("+paramLenRSI+","+paramLenUD+","+paramLenRank+")"
, colorBrightGreen, styleLine, 0, 100);

Plot(ClosingRange(), "Closing Range", colorRed, styleDashed);

Plot( MA(ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank), paramAverage)
, "Average("+paramAverage+")"
, colorLightBlue, styleLine, 0, 100);

PlotGrid(85, colorGold);
PlotGrid(15, colorGold);


SetTradeDelays(0,0,0,0);
BuyPrice = C;
SellPrice = C;
NumberPositions = 10;
SetOption("MaxOpenPositions", NumberPositions);
PositionSize = -100 / NumberPositions;
Buy = ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank) < 15 AND ClosingRange() < 25;
Sell = ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank) > 70;
Short = ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank) > 85 AND ClosingRange() > 75;
Cover = ConnorsRSI(paramLenRSI,paramLenUD,paramLenRank) < 30;
AddColumn(Volume,"Volume");
Lookback = 5;
PositionScore = -ROC(C,Lookback);
 

Similar threads