- Katılım
- 23 Eki 2020
- Mesajlar
- 1,823
Zamansky & Stendahl's Dynamic Zones for MS6.5 (From the TASC July 1997 article). First, for the Lookback Periods plot a 9-day RSI along with StDev adjusted rolling 70-day SMAs; e.g., as can be seen in the article's S&P 500-example. |
|
Dynamic Zones PR:=Input("Enter Periods for RSI",1,100,9); PB:=Input("Enter Periods for BUY",1,100,70); PS:=Input("Enter Periods for SELL",1,100,70); UpZone:=Mov(RSI(PR),PS,S)+(1.3185 *Stdev(RSI(PR),PS)); LwZone:=Mov(RSI(PR),PB,S)-(1.3185 *Stdev(RSI(PR),PB)); UpZone; LwZone; |
Most indicators use a fixed zone for buy and sell signals. Here's a concept based on zones that are responsive to past levelsof theindicator. One approach to active investing employs the use of oscillatorsto exploittradable market trends. This investing style follows a very simple form of logic: Enter themarket only when an oscillator has moved far above or below traditional tradinglevels. However, these oscillator-driven systems lack the ability to evolvewith the market becausethey use fixed buy and sell zones. Traders typically use one set ofbuy andsell zones for a bull marketand substantially different zones for a bear market. And therein liestheproblem. Once traders begin introducing their market opinions into trading equations,by changing the zones, they negate the system's mechanical nature. The objective is to havea systemautomatically defineits own buy and sell zones and thereby profitably trade in any market-- bullor bear. Dynamic zones offer a solution to the problem of fixed buy and sellzones for any oscillator-driven system. The algorithm for the dynamic zones is a series of steps. First, decidethe value of the lookback period t. Next, decide the value of the probability Pbuy for buy zone and valueof the probability Psell for the sell zone. The area above and below the dynamic zones constitute the upper andlower10% boundaries. The zones appear to evolve with the market because they use a rolling70-day period of indicator values in their construction. | |
| |
Source / From: |