Kevin_in_GA 4,599 posts msg #103340 - Ignore Kevin_in_GA |
11/14/2011 6:04:40 PM
Tom and crew at SF:
Would it be possible to code a DATE function into SF? For example, it might look like
date(variable or indicator of interest, DATE)
This way, one could reference the closing price for a specific date, the RSI or MACD, whatever indicator you like, or even a user-defined variable. Since it is clear that SF can already determine these for backtesting, why not see if you can meet a chronic issue here and give us a function that let's us call a value from a specific date?
Thanks,
Kevin
|
jthelen 29 posts msg #103350 - Ignore jthelen |
11/14/2011 11:29:52 PM
Good idea Kevin!
JT
|
15minoffame 131 posts msg #103352 - Ignore 15minoffame |
11/15/2011 1:07:57 AM
Is that crickets I hear?
|
Kevin_in_GA 4,599 posts msg #103357 - Ignore Kevin_in_GA |
11/15/2011 11:16:37 AM
I remain hopeful ...
|
jthelen 29 posts msg #103366 - Ignore jthelen |
11/16/2011 1:03:36 AM
Trying to build a monthly fitler for an indicator. Why won't stockfetcher take this code? (specifically nca1 / tca1)
Fetcher[
chart-display weekly
chart-type candle
set{tca2, 1}
set{nca2, 2}
set{chg1, weekly close - weekly close 4 days ago}
set{nca1, nca2 + 1 / 2 * chg1}
set{abs1, abs(chg1)}
set{tca1, tca2 + 1 / 2 * [ abs1 - tca2 ]}
set{cr1, nca1 / tca1}
set{RS, 50 * [ cr1+1 ]}
and add column rs
]
Any ideas? JT
|
Kevin_in_GA 4,599 posts msg #103369 - Ignore Kevin_in_GA |
11/16/2011 9:07:31 AM
You probably should have posted this in a new thread. However, the reason is that you are attempting to do more than one mathematical operation in several set{} statements. You can only do one per set{} statement.
|
Kevin_in_GA 4,599 posts msg #103381 - Ignore Kevin_in_GA |
11/16/2011 7:58:13 PM
SF Crew:
2 days is probably long enough for you to figure out if this can be done. If you can do it, great. If not, say so.
|
stockfetcher 980 posts msg #103382 |
11/16/2011 8:55:44 PM
We apologize for the delay in responding to your feature suggestion. In the future, for quicker responses we strongly recommend emailing support directly at support@stockfetcher.com. Unfortunately, we are not always able to fully follow all threads in the StockFetcher forums.
Concerning the feature you are looking for, we will certainly look into adding that with a future update. Adding a direct date reference within a filter is a different technical matter than backtesting, as backtesting is effectively re-running a filter using "date offset" (which does allow for direct date references.)
We will be sure to post an update if we are able to make any progress with this feature or have any questions for you.
StockFetcher Support
|
jthelen 29 posts msg #103384 - Ignore jthelen |
11/17/2011 10:21:56 AM
Could the Stockfetcher development team implement the following features?
Original feature:
date offset 7
Requested feature:
date offset 11/10/2011
Original feature:
“X days ago”
Requested feature:
“On day 11/10/2011”
Example:
Close is above open 7 days ago
Close is above open on day 11/10/2011
This would be very helpful!
JT
|