Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Random Buy Sell AFL for Amibroker (AFL)
koyak13
about 11 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
trading system, amibroker

AFL that randomly buys and sells. Useful as a benchmark – If a formula works below the performance of this, ditch it.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
//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

1. johnnypareek

Well,

Is any explanation the use of this???

2. tradermind

hi jonny..
i always follow you in j forum..
you are great

3. johnnypareek

@tradermind

Hey Thanks Bro. Happy to know that. You must be talking about traderji.

4. Sandipan

How to use it?

5. waves

Would appreciate if you show how to use it.

Leave Comment

Please login here to leave a comment.

Back