Created
April 4, 2017 12:56
-
-
Save marketcalls/f733a0680962daa69ad86e0c7e0be610 to your computer and use it in GitHub Desktop.
Bubble Picker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Simple Bubble Picker Amibroker Exploration Code | |
//Coded by Rajandran R - www.marketcalls.in | |
_SECTION_BEGIN(); | |
r = ROC(C,1); | |
Filter = BarCount>4 AND RSI(2)>99; | |
AddColumn(C,"Close",1.2); | |
AddColumn(RSI(2),"rsi2",1.2); | |
_SECTION_END(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment