StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 41 42 43 44 45 ... 57 >>Post Follow-up
jimhbutton
104 posts
msg #71155
Ignore jimhbutton
2/3/2009 9:26:14 PM

pops,

You are welcome.



jimhbutton
104 posts
msg #71156
Ignore jimhbutton
modified
2/3/2009 9:43:14 PM

The following four filters (full subscription) help me get a "bigger picture" handle on the Two-Way 14-day history and movement of any given stock that I plug into the "SYMLIST" parenthesis. I use these in conjunction with the four previously posted filters. The first two use overnight "Previous-Close" starting points; the latter two use "Open" starting points:

Fetcher[

/* (Days 1-14) C-H & C-L Two-Way Stat Filter for Past 14 Trading Days */

set{CH1, high - close 1 day ago}
set{CL1, close 1 day ago - low}
set{CH2, high 1 day ago - close 2 days ago}
set{CL2, close 2 days ago - low 1 day ago}
set{CH3, high 2 days ago - close 3 days ago}
set{CL3, close 3 days ago - low 2 days ago}
set{CH4, high 3 days ago - close 4 days ago}
set{CL4, close 4 days ago - low 3 days ago}
set{CH5, high 4 days ago - close 5 days ago}
set{CL5, close 5 days ago - low 4 days ago}
set{CH6, high 5 days ago - close 6 days ago}
set{CL6, close 6 days ago - low 5 days ago}
set{CH7, high 6 days ago - close 7 days ago}
set{CL7, close 7 days ago - low 6 days ago}
set{CH8, high 7 days ago - close 8 days ago}
set{CL8, close 8 days ago - low 7 days ago}
set{CH9, high 8 days ago - close 9 days ago}
set{CL9, close 9 days ago - low 8 days ago}
set{CH10, high 9 days ago - close 10 days ago}
set{CL10, close 10 days ago - low 9 days ago}
set{CH11, high 10 days ago - close 11 days ago}
set{CL11, close 11 days ago - low 10 days ago}
set{CH12, high 11 days ago - close 12 days ago}
set{CL12, close 12 days ago - low 11 days ago}
set{CH13, high 12 days ago - close 13 days ago}
set{CL13, close 13 days ago - low 12 days ago}
set{CH14, high 13 days ago - close 14 days ago}
set{CL14, close 14 days ago - low 13 days ago}
set{ AvgCH14 , CMA( CH1 , 14 ) }
set{ AvgCL14 , CMA( CL1 , 14 ) }

add column separator
add column CH1
add column CL1
add column separator
add column CH2
add column CL2
add column separator
add column CH3
add column CL3
add column separator
add column CH4
add column CL4
add column separator
add column CH5
add column CL5
add column separator
add column CH6
add column CL6
add column separator
add column CH7
add column CL7
add column separator
add column CH8
add column CL8
add column separator
add column CH9
add column CL9
add column separator
add column CH10
add column CL10
add column separator
add column CH11
add column CL11
add column separator
add column CH12
add column CL12
add column separator
add column CH13
add column CL13
add column separator
add column CH14
add column CL14
add column separator
add column separator
add column AvgCH14 {run14}
add column AvgCL14 {drop14}

/* SELECTION CRITERIA */

SYMLIST ( )

/* SORT CRITERIA */

Sort Column 1 Ascending

]



Fetcher[

/* (Averages: Days 1-14) C-H & C-L Two-Way Stat Filter for Past 14 Trading Days */

set{CH1, high - close 1 day ago}
set{CL1, close 1 day ago - low}

set{ AvgCH2 , CMA( CH1 , 2 ) }
set{ AvgCL2 , CMA( CL1 , 2 ) }
set{ AvgCH3 , CMA( CH1 , 3 ) }
set{ AvgCL3 , CMA( CL1 , 3 ) }
set{ AvgCH4 , CMA( CH1 , 4 ) }
set{ AvgCL4 , CMA( CL1 , 4 ) }
set{ AvgCH5 , CMA( CH1 , 5 ) }
set{ AvgCL5 , CMA( CL1 , 5 ) }
set{ AvgCH6 , CMA( CH1 , 6 ) }
set{ AvgCL6 , CMA( CL1 , 6 ) }
set{ AvgCH7 , CMA( CH1 , 7 ) }
set{ AvgCL7 , CMA( CL1 , 7 ) }
set{ AvgCH8 , CMA( CH1 , 8 ) }
set{ AvgCL8 , CMA( CL1 , 8 ) }
set{ AvgCH9 , CMA( CH1 , 9 ) }
set{ AvgCL9 , CMA( CL1 , 9 ) }
set{ AvgCH10 , CMA( CH1 , 10 ) }
set{ AvgCL10 , CMA( CL1 , 10 ) }
set{ AvgCH11 , CMA( CH1 , 11 ) }
set{ AvgCL11 , CMA( CL1 , 11 ) }
set{ AvgCH12 , CMA( CH1 , 12 ) }
set{ AvgCL12 , CMA( CL1 , 12 ) }
set{ AvgCH13 , CMA( CH1 , 13 ) }
set{ AvgCL13 , CMA( CL1 , 13 ) }
set{ AvgCH14 , CMA( CH1 , 14 ) }
set{ AvgCL14 , CMA( CL1 , 14 ) }

add column separator
add column CH1
add column CL1
add column separator
add column AvgCH2 {ACH2}
add column AvgCL2 {ACL2}
add column separator
add column AvgCH3 {ACH3}
add column AvgCL3 {ACL3}
add column separator
add column AvgCH4 {ACH4}
add column AvgCL4 {ACL4}
add column separator
add column AvgCH5 {ACH5}
add column AvgCL5 {ACL5}
add column separator
add column AvgCH6 {ACH6}
add column AvgCL6 {ACL6}
add column separator
add column AvgCH7 {ACH7}
add column AvgCL7 {ACL7}
add column separator
add column AvgCH8 {ACH8}
add column AvgCL8 {ACL8}
add column separator
add column AvgCH9 {ACH9}
add column AvgCL9 {ACL9}
add column separator
add column AvgCH10 {ACH10}
add column AvgCL10 {ACL10}
add column separator
add column AvgCH11 {ACH11}
add column AvgCL11 {ACL11}
add column separator
add column AvgCH12 {ACH12}
add column AvgCL12 {ACL12}
add column separator
add column AvgCH13 {ACH13}
add column AvgCL13 {ACL13}
add column separator
add column AvgCH14 {ACH14}
add column AvgCL14 {ACL14}
add column separator

/* SELECTION CRITERIA */

SYMLIST ( )

/* SORT CRITERIA */

Sort Column 1 Ascending

]



Fetcher[

/* (Days 1-14) O-H & O-L Two-Way Stat Filter for Past 14 Trading Days */

set{OH1, high - open}
set{OL1, open - low}
set{OH2, high 1 day ago - open 1 days ago}
set{OL2, open 1 days ago - low 1 day ago}
set{OH3, high 2 days ago - open 2 days ago}
set{OL3, open 2 days ago - low 2 days ago}
set{OH4, high 3 days ago - open 3 days ago}
set{OL4, open 3 days ago - low 3 days ago}
set{OH5, high 4 days ago - open 4 days ago}
set{OL5, open 4 days ago - low 4 days ago}
set{OH6, high 5 days ago - open 5 days ago}
set{OL6, open 5 days ago - low 5 days ago}
set{OH7, high 6 days ago - open 6 days ago}
set{OL7, open 6 days ago - low 6 days ago}
set{OH8, high 7 days ago - open 7 days ago}
set{OL8, open 7 days ago - low 7 days ago}
set{OH9, high 8 days ago - open 8 days ago}
set{OL9, open 8 days ago - low 8 days ago}
set{OH10, high 9 days ago - open 9 days ago}
set{OL10, open 9 days ago - low 9 days ago}
set{OH11, high 10 days ago - open 10 days ago}
set{OL11, open 10 days ago - low 10 days ago}
set{OH12, high 11 days ago - open 11 days ago}
set{OL12, open 11 days ago - low 11 days ago}
set{OH13, high 12 days ago - open 12 days ago}
set{OL13, open 12 days ago - low 12 days ago}
set{OH14, high 13 days ago - open 13 days ago}
set{OL14, open 13 days ago - low 13 days ago}
set{ AvgOH14 , CMA( OH1 , 14 ) }
set{ AvgOL14 , CMA( OL1 , 14 ) }

add Column separator
add Column OH1
add Column OL1
add Column separator
add Column OH2
add Column OL2
add Column separator
add Column OH3
add Column OL3
add Column separator
add Column OH4
add Column OL4
add Column separator
add Column OH5
add Column OL5
add Column separator
add Column OH6
add Column OL6
add Column separator
add Column OH7
add Column OL7
add Column separator
add Column OH8
add Column OL8
add Column separator
add Column OH9
add Column OL9
add Column separator
add Column OH10
add Column OL10
add Column separator
add Column OH11
add Column OL11
add Column separator
add Column OH12
add Column OL12
add Column separator
add Column OH13
add Column OL13
add Column separator
add Column OH14
add Column OL14
add Column separator
add Column separator
add Column AvgOH14 {run14}
add Column AvgOL14 {drop14}

/* SELECTION CRITERIA */

SYMLIST ( )

/* SORT CRITERIA */

Sort Column 1

]



Fetcher[

/* (Averages: Days 1-14) O-H & O-L Two-Way Stat Filter for Past 14 Trading Days */

set{OH1, high - open}
set{OL1, open - low}

set{ AvgOH2 , CMA( OH1 , 2 ) }
set{ AvgOL2 , CMA( OL1 , 2 ) }
set{ AvgOH3 , CMA( OH1 , 3 ) }
set{ AvgOL3 , CMA( OL1 , 3 ) }
set{ AvgOH4 , CMA( OH1 , 4 ) }
set{ AvgOL4 , CMA( OL1 , 4 ) }
set{ AvgOH5 , CMA( OH1 , 5 ) }
set{ AvgOL5 , CMA( OL1 , 5 ) }
set{ AvgOH6 , CMA( OH1 , 6 ) }
set{ AvgOL6 , CMA( OL1 , 6 ) }
set{ AvgOH7 , CMA( OH1 , 7 ) }
set{ AvgOL7 , CMA( OL1 , 7 ) }
set{ AvgOH8 , CMA( OH1 , 8 ) }
set{ AvgOL8 , CMA( OL1 , 8 ) }
set{ AvgOH9 , CMA( OH1 , 9 ) }
set{ AvgOL9 , CMA( OL1 , 9 ) }
set{ AvgOH10 , CMA( OH1 , 10 ) }
set{ AvgOL10 , CMA( OL1 , 10 ) }
set{ AvgOH11 , CMA( OH1 , 11 ) }
set{ AvgOL11 , CMA( OL1 , 11 ) }
set{ AvgOH12 , CMA( OH1 , 12 ) }
set{ AvgOL12 , CMA( OL1 , 12 ) }
set{ AvgOH13 , CMA( OH1 , 13 ) }
set{ AvgOL13 , CMA( OL1 , 13 ) }
set{ AvgOH14 , CMA( OH1 , 14 ) }
set{ AvgOL14 , CMA( OL1 , 14 ) }

add column separator
add column OH1
add column OL1
add column separator
add column AvgOH2 {AOH2}
add column AvgOL2 {AOL2}
add column separator
add column AvgOH3 {AOH3}
add column AvgOL3 {AOL3}
add column separator
add column AvgOH4 {AOH4}
add column AvgOL4 {AOL4}
add column separator
add column AvgOH5 {AOH5}
add column AvgOL5 {AOL5}
add column separator
add column AvgOH6 {AOH6}
add column AvgOL6 {AOL6}
add column separator
add column AvgOH7 {AOH7}
add column AvgOL7 {AOL7}
add column separator
add column AvgOH8 {AOH8}
add column AvgOL8 {AOL8}
add column separator
add column AvgOH9 {AOH9}
add column AvgOL9 {AOL9}
add column separator
add column AvgOH10 {AOH10}
add column AvgOL10 {AOL10}
add column separator
add column AvgOH11 {AOH11}
add column AvgOL11 {AOL11}
add column separator
add column AvgOH12 {AOH12}
add column AvgOL12 {AOL12}
add column separator
add column AvgOH13 {AOH13}
add column AvgOL13 {AOL13}
add column separator
add column AvgOH14 {AOH14}
add column AvgOL14 {AOL14}
add column separator

/* SELECTION CRITERIA */

SYMLIST ( )

/* SORT CRITERIA */

Sort Column 1 Ascending

]



johnsund
16 posts
msg #71275
Ignore johnsund
2/9/2009 3:43:25 PM

TRO - Have you ever converted (maybe the wrong term) any of the functions of RFR to any of the Tradestation tools (like Radar Screen, Scanner, etc.) or are there indicators you have developed that are close to RFR that run on TS. Thanks, and welcome home.

JS

TheRumpledOne
6,407 posts
msg #71293
Ignore TheRumpledOne
2/10/2009 5:22:20 PM

Image and video hosting by TinyPic

Yes.



johnsund
16 posts
msg #71298
Ignore johnsund
2/10/2009 7:12:02 PM

TRO - How would I find that?

Thanks

TheRumpledOne
6,407 posts
msg #71320
Ignore TheRumpledOne
modified
2/11/2009 11:22:52 AM

You would have to be looking on my computer...LOL!!

I posted the TRO_PLOT indicator on www.kreslik.com. It would be in one of the TradeStation Motherlodes in the download section.

Just feed TRO_PLOT the inputs and it will evaluate and plot/display them.





TheRumpledOne
6,407 posts
msg #71506
Ignore TheRumpledOne
2/18/2009 2:23:08 PM

PMI taking a beating... OPPORTUNITY?


TheRumpledOne
6,407 posts
msg #71529
Ignore TheRumpledOne
2/19/2009 10:27:58 AM

RUN PMI, RUN!!

13th_floor
724 posts
msg #71558
Ignore 13th_floor
2/19/2009 6:24:06 PM

Yeah,
PMI a beautiful short on the downbreak of 1....pos,just like all the other financials/banks/insurance health and mortgage etc.

Still borrows on ib and i'll jump it on red.

Symbol: PMI
Availability: 300'000
Exchanges: ARCA, ATD, BATS, BEX, CBSX

13th_floor
724 posts
msg #71682
Ignore 13th_floor
2/23/2009 9:13:35 PM

RUN,PMI,RUN....DOWN

.65 close lod

StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 41 42 43 44 45 ... 57 >>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.