Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Random Buy Sell AFL for Amibroker (AFL)
AFL that randomly buys and sells. Useful as a benchmark – If a formula works below the performance of this, ditch it.
Similar Indicators / Formulas
Indicator / Formula
//Buy Random
Buy_Random = Param("Buy_Random",0,0,1);
if(Buy_Random) {
Frequency = 10;
NextRandom = Random(39023);
Buy = IIf(NextRandom<Frequency/252,1,0);
}
//Sell Random
Sell_Random = Param("Sell_Random",0,0,1);
if(Sell_Random){
Frequency = 10;
NextRandom = Random(73234);
Sell = IIf(NextRandom<Frequency/252,1,0) AND NOT Buy;
}5 comments
Leave Comment
Please login here to leave a comment.
Back
Well,
Is any explanation the use of this???
hi jonny..
i always follow you in j forum..
you are great
@tradermind
Hey Thanks Bro. Happy to know that. You must be talking about traderji.
How to use it?
Would appreciate if you show how to use it.