The link is:
http://www.thinkscripter.com/2009/06/30/trade-zones/
I copy paste the script for you to save your time....
# TS_TRADEZONES
# http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 30 JUN 2009
declare fullrange;
input zoneStart = 1500;
input zoneEnd = 1615;
input type = {default NOTRADE, REVERSAL};
plot highBar;
plot lowBar;
switch (type){
case NOTRADE:
highBar = if secondsTillTime(zoneStart) <= 0 and secondsTillTime(zoneEnd) >= 0 then highestAll(high) else double.nan;
lowBar = if secondsTillTime(zoneStart) <= 0 and secondsTillTime(zoneEnd) >= 0 then lowestAll(low) else double.nan;
case REVERSAL:
lowBar = if secondsTillTime(zoneStart) <= 0 and secondsTillTime(zoneEnd) >= 0 then highestAll(high) else double.nan;
highBar = if secondsTillTime(zoneStart) <= 0 and secondsTillTime(zoneEnd) >= 0 then lowestAll(low) else double.nan;
}
highBar.assignValueColor(if highBar>lowBar then color.dark_red else color.green);
lowBar.assignValueColor(if highBar>lowBar then color.dark_red else color.green);
addCloud(lowBar, highBar);
- 1 day 2 minutes
- DMI (14)
- Slow Stochastic (10,10)
- MACD (12,26,9)
Entry
- CALL : Swing Low --> draw FIBO from High (the High bar) to Low (the Swing Low)
- PUT : Swing High --> draw FIBO from Low (the Low bar) to High (the Swing High)
Entry is perfect when make new Hi or new Lo
Exit (Target Profit)
- Fibo Retrace 50% (if day range (high-low) above 2, you can use Fibo Retrace 38.2% or even 23.6%, consider DMI (14) indicators to have confidence of the trend strength)
- 1 tick (1/16) from entry price
The figures are:
Goldman Sachs (GS):
- Swing High
- Play PUT
- SS(10,10) : bearish cross in the overbought area
- MACD(12,26,9) : bearish cross above zero line
Research in Motions (RIMM):
- Swing Low
- Play CALL
- SS(10,10) : bullish cross in the oversold area
- MACD(12,26,9) : bullish cross below zero line