julesrulesny![]() Elite ![]() ![]() ![]() ![]() ![]() Posts: 900 Joined: 8/15/2007 Location: NYC ![]() | Price touching Lower Bollinger Band - You could change C to H, L, or O c[1] = BOL_Lower(13,2) For the rest of it, you are asking for the Omniscript that will show the Bar both touching the Lower BB and also coming within 1% of the Lower BB in the same timeframe? that's going to be difficult.. Your asking OT to look for symbols that both touched the Lower BB and came within 1% of the Lower BB in the same timeframe. Try changing C[1] to C[2]. C[1] means Close 1 day ago, or 1 period ago.. Maybe something like.. c[1] = BOL_Lower(13,2) AND C[1] > BOL_Lower(13,2)+.01 Try different figures to see if it meets your standards, or maybe use C > BOL_Lower(13,2) * ATR(14)*.01 just guess work on my part... |