StockFetcher Forums · Filter Exchange · Triple Screen<< 1 2 3 4 >>Post Follow-up
jayzz
45 posts
msg #74111
Ignore jayzz
5/5/2009 11:19:29 AM

awsome..

Hey Chetron, is it possible to see a COLUMN " % change the day after" ? and not just since%

chetron
2,817 posts
msg #74112
Ignore chetron
5/5/2009 11:20:53 AM

I WISH!!!!!!!!!!!!!! = )

Eman93
4,750 posts
msg #74172
Ignore Eman93
modified
5/6/2009 7:44:30 PM

use this

/* profit statistics */
set{profit, high-open}
set{pr, profit/open}
set{profit%, pr * 100}

set{pain, open - low}
set{pa, pain / open}
set{pain%, pa * 100}

/* profit statistics */

add column open
add column low
add column high
add column profit%
add column pain%]


Eman93
4,750 posts
msg #74173
Ignore Eman93
modified
5/6/2009 7:53:19 PM

Wait you need to set your filter results for 1 day ago..............
I wonder if you can do that with the offset function? tried it.........no

Eman93
4,750 posts
msg #74174
Ignore Eman93
modified
5/6/2009 8:07:31 PM

what this is giving you is todays results and todays profit pain..

you need to set everything to 1 day ago in the filter except the pain and profit....its good for eye ball back testing.....

so then you would need the same filter with out the 1 day ago stuff for use for tomorrows picks from today........

I think if you study stocks long enough you start to talk like M4M..........HO HO....... its hard to live on 3 hours sleep.......


Eman93
4,750 posts
msg #74176
Ignore Eman93
modified
5/6/2009 8:16:13 PM

like this

Fetcher[/* Emans in the buy zone filter 1 day back test*/
close is above 1
close is below ema(200) 1 day ago
close is below ema(100) 1 day ago
close is below ema(50) 1 day ago
close is below ema(35) 1 day ago
close is above ema(10) 1 day ago

ema (10) is above ema(20) 1 day ago

Volume has been increasing for 1 days 1 day ago

/* profit statistics */
offset is 0
set{profit, high-open}
set{pr, profit/open}
set{profit%, pr * 100}

set{pain, open - low}
set{pa, pain / open}
set{pain%, pa * 100}

/* profit statistics */

add column open
add column low
add column high
add column profit%
add column pain%

Average Volume(30) is above 70000
]



Eman93
4,750 posts
msg #74288
Ignore Eman93
5/10/2009 9:54:53 PM

no thats wrong

like this......

Fetcher[/* Emans in the buy zone filter 1 day back test*/
close 1 day ago is above 1
close 1 day ago is below ema(200) 1 day ago
close 1 day ago is below ema(100) 1 day ago
close 1 day ago is below ema(50) 1 day ago
close 1 day ago is below ema(35) 1 day ago
close 1 day ago is above ema(10) 1 day ago

ema (10) 1 day ago is above ema(20) 1 day ago

Volume has been increasing for 1 days 1 day ago

/* profit statistics */

set{profit, high-open}
set{pr, profit/open}
set{profit%, pr * 100}

set{pain, open - low}
set{pa, pain / open}
set{pain%, pa * 100}

/* profit statistics */

add column open
add column low
add column high
add column close
add column profit%
add column pain%

Average Volume(30) is above 70000
]



chetron
2,817 posts
msg #74325
Ignore chetron
modified
5/12/2009 10:47:18 AM

MARKET OVERSOLD 3X SCREEN


Fetcher[

/* TACHIKAWA: OVERSOLD MARKET */

Set{Bullpower, high - ema(13)}
Set{Bearpower, low - ema(13)}


SET{VAR1,COUNT(WEEKLY MACD HISTOGRAM ABOVE WEEKLY MACD HISTOGRAM 1 WEEK AGO,1)}
SET{VAR2,COUNT(WEEKLY MACD HISTOGRAM BELOW WEEKLY MACD HISTOGRAM 1 WEEK AGO,1)}
WEEKLY MACD HISTOGRAM 2 WEEK AGO ABOVE WEEKLY MACD HISTOGRAM 1 WEEK AGO

SET{VAR3,COUNT(FI(2) BELOW 0,1)}
SET{VAR4,COUNT(FI(2) ABOVE 0,1)}

SET{BUYME,VAR1 * VAR3}
SET{SHORTME,VAR2 * VAR4}

SET{BUY_AT,BUYME * HIGH}
SET{SHORT_AT,SHORTME * LOW}

SET{STOP_LOSS_B,BUYME * LOW}
SET{STOP_LOSS_S,SHORTME * HIGH}

SET{PLAYS,BUYME + SHORTME}

SET{VAR5,COUNT(WEEKLY MACD HISTOGRAM BELOW 0,1)}
SET{VAR6,COUNT(WEEKLY MACD HISTOGRAM ABOVE -0,1)}
SET{VAR7,VAR5 * BUYME}
SET{VAR8,VAR6 * SHORTME}

SET{TIGHTEN_IT_UP,VAR7 + VAR8}

DRAW SHORTME ON PLOT BUYME
DRAW WEEKLY MACD HISTOGRAM
DRAW FI(2)
DRAW BEARPOWER ON PLOT BULLPOWER

ADD COLUMN SEPARATOR
ADD COLUMN BUY_AT
ADD COLUMN STOP_LOSS_B {STOP LOSS}
ADD COLUMN SEPARATOR

VAR7 ABOVE .5
CLOSE ABOVE .1
VOLUME ABOVE 1000000
FI(2) BELOW FI(2) 13 DAY HIGH 1 DAY AGO
FI(2) ABOVE FI(2) 13 DAY LOW 1 DAY AGO
BULLPOWER BELOW BULLPOWER 13 DAY HIGH
BEARPOWER ABOVE BEARPOWER 13 DAY LOW

DO NOT DRAW PLAYS
DO NOT DRAW TIGHTEN_IT_UP

]



chetron
2,817 posts
msg #74326
Ignore chetron
modified
5/12/2009 10:48:47 AM

OVERBOUGHT 3X SCREEN....


Fetcher[


/* TACHIKAWA: OVERBOUGHT MARKET */

Set{Bullpower, high - ema(13)}
Set{Bearpower, low - ema(13)}


SET{VAR1,COUNT(WEEKLY MACD HISTOGRAM ABOVE WEEKLY MACD HISTOGRAM 1 WEEK AGO,1)}
SET{VAR2,COUNT(WEEKLY MACD HISTOGRAM BELOW WEEKLY MACD HISTOGRAM 1 WEEK AGO,1)}
WEEKLY MACD HISTOGRAM 2 WEEK AGO BELOW WEEKLY MACD HISTOGRAM 1 WEEK AGO

SET{VAR3,COUNT(FI(2) BELOW 0,1)}
SET{VAR4,COUNT(FI(2) ABOVE 0,1)}

SET{BUYME,VAR1 * VAR3}
SET{SHORTME,VAR2 * VAR4}

SET{BUY_AT,BUYME * HIGH}
SET{SHORT_AT,SHORTME * LOW}

SET{STOP_LOSS_B,BUYME * LOW}
SET{STOP_LOSS_S,SHORTME * HIGH}

SET{PLAYS,BUYME + SHORTME}

SET{VAR5,COUNT(WEEKLY MACD HISTOGRAM BELOW 0,1)}
SET{VAR6,COUNT(WEEKLY MACD HISTOGRAM ABOVE -0,1)}
SET{VAR7,VAR5 * BUYME}
SET{VAR8,VAR6 * SHORTME}

SET{TIGHTEN_IT_UP,VAR7 + VAR8}

DRAW SHORTME ON PLOT BUYME
DRAW WEEKLY MACD HISTOGRAM
DRAW FI(2)
DRAW BEARPOWER ON PLOT BULLPOWER

ADD COLUMN SEPARATOR
ADD COLUMN SHORT_AT
ADD COLUMN STOP_LOSS_S {STOP LOSS}
ADD COLUMN SEPARATOR

VAR8 ABOVE .5
CLOSE ABOVE .1
VOLUME ABOVE 1000000
FI(2) BELOW FI(2) 13 DAY HIGH 1 DAY AGO
FI(2) ABOVE FI(2) 13 DAY LOW 1 DAY AGO
BULLPOWER BELOW BULLPOWER 13 DAY HIGH
BEARPOWER ABOVE BEARPOWER 13 DAY LOW

DO NOT DRAW PLAYS
DO NOT DRAW TIGHTEN_IT_UP


]



billrider321
70 posts
msg #76350
Ignore billrider321
7/12/2009 10:35:43 PM

i am going through MTRIG's website and would like to do some thing like this.
you can refer his charts in his blogs in http://blog.mtrig.com/




Triple Screen Trading System - Determine The Trend
Blog Post On: 6/26/2009


In the Elder Triple Screen (or Triple Filter) system Dr. Elder (author of "Trading for a Living" or "Come Into My Trading Room") suggests that a trader starts with a Weekly Chart looking for the trend. Once you know the trend go to a daily chart to select an entry point.

One technique Dr. Elder suggests is to use the MACD Histogram changes to indicate the direction of the trend. If the MACD Histogram turned up look for BUY points on the daily chart, if the MACD Histogram turned down look for SHORT entry points on a daily chart.

The screen shots below discuss this method and includes the AMIBroker formula to color the price bars and MACD Histogram

Stock Symbol: QQQQ - PowerShares (NASDAQ 100 Index)

Screen/Filter 1 - Weekly Chart: In the first week of March 2009 there was a very strong bullish divergence, and MACD Histogram turned green showing the trend was up.



Second option for the weekly chart is to use Elder's Impulse System. Both the MACD Histogram and EMA(21) must be moving in the same direction to indicate a BUY or SELL. When the MACD Histogram is up and EMA(21) is up Price bars are green. When MACD Histogram is down and EMA(21) is down price bars are red. If the MACD Histogram and EMA(21) are moving in two different directions the price bars are blue.

"When the impulse system is Green you may go long or stand aside. When the impulse system is red you may go short or stand aside. I wait for the impulse system to go off green before shorting and off red before going long" - Dr. Elder


Screen/Filter 2 - Daily Chart: RSI was in an oversold condition which allows for a lower risk entry point.

Screen/Filter 3 - Trade Technique: The 3rd Screen/Filter is a technique to enter a trade.

Elder tells us to place a BUY-STOP order above the high of the previous day. This would allow the trader to be "stopped into" the market the next day if prices moved up. This helps to ensure a trader enters a trade with the market moving in the direction of a trade.

Have you ever bought a stock when it was trending down because all the indicators said "BUY" just for the stock to continue moving lower? The BUY-STOP method helps to alleviate that error. This concept can be used for shorting a stock using a SELL-SHORT-STOP order.



Download MACD Price Chart Color Formula from the AMIBroker Web Site.

Download Impluse Price Chart Color Formula from the AMIBroker Web Site.

Download MACD Color Formula from the AMIBroker Web Site.



E-mail | Permalink | Comments (0)
<< Previous posts
Next posts12345678910...1415Previous posts

StockFetcher Forums · Filter Exchange · Triple Screen<< 1 2 3 4 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.