Is it possible to use to different AFLs signal scan by Amibroker Exploration?

#1
Dear Members

I am new to Amibroker. Excited with AFL world and Amibroker. Curious to know is it possible to scan 2 different AFLs for signals.

I have 2 AFLs where Buy and Sell signals are given. I wanted to buy or sell only after 2 AFLs confirmation. Can I use Amibroker Exploration to scan these 2 AFLs signals and show the output as BUY or SELL?

Thanks in Advance :)
 

amitrandive

Well-Known Member
#2
Dear Members

I am new to Amibroker. Excited with AFL world and Amibroker. Curious to know is it possible to scan 2 different AFLs for signals.

I have 2 AFLs where Buy and Sell signals are given. I wanted to buy or sell only after 2 AFLs confirmation. Can I use Amibroker Exploration to scan these 2 AFLs signals and show the output as BUY or SELL?

Thanks in Advance :)
Yes

Use two different Analysis windows
 
#5
Hello

Put both AFLs together one the below other . . . into a third file . . .

rename all Buy/Sell/Short/Cover on first as buy1 etc and 2nd as buy2

use this

LONG1 = flip(Buy1,Sell1); Down1 = Flip(Short1,Cover1); write same for system 2/3/ etc .


then write combined sys as

Buy = Long1 and Long2 and . . . .
Sell = Down1 or Down2 or ...

same for short / cover. . . .

You can combine various forms of Logical relations with AND//OR etc . . .

Happy :)
 

Similar threads