radar screen equivalent

Quote from bashatrader:

Can anyone confirm the details of the above story? It appear as Tradestation marketed a defective product. Which is the other product Mr. Harris is talking about in this paper. I wonder why he won't reveal his full findings. Can you check it out?

http://www.tradingpatterns.com/About_Us/articles/backtesting/backtesting.html

IMO the other product is Metastock. It is known Metastock is a crap tester. I also think those products were rushed to sales dept without even rudimentary testing and then when the defects became known those crap companies refused to fix them but instead blamed traders for the losses.

I think there may be grounds for some kind of legal settlement with those companies for those who were cheated with such crap products.

Is there anyone here with legal background? Is there ground for a case against a company that knowingly distributed defective products?
 
Thanks for you help. I have come up with Market analyzer for ninja trader as a good alternative. And thought I had come up with a good rt data feed through ameritrade.

The problem I have is ameritrade uses the - sign for a pref designation. The control panel in ninja trader recognizes this but the market analyzer throws it out. Must be a bug in market analyzer.

An alternative I looked into is yahoo live data for 14 a month. They use the . sign for pref stocks. Does anyone know if this will work with ninja or or there other data feed alternatives that are reasonably priced.
 
Quote from mokwit:

Maxpi, appreciate your suggestions, however, without wishing to sound ungrateful for your help.............


1) You cannot write a code solution to have a realtime alert alert only once. Global variable solutions such as Alertonce top out at a few hundred symbols alerts and then stop alerting once ( - is hypertraders order automation software a solution?).
=======================
I think you can over come this by some clever coding... you clear a variable at the start then set it if you get an alert and use it as a condition for the alert... I don't think the hypertrader stuff is up and running, they have not upgraded their site since 2004...
-----------------------------------
I agree it should be possible but so far I have not found it, nor it seems has anyone else - maybe it can't be done and that is why the alertonce funtion was coded into TS8. here are a couple that look like they should work but don't.........
example 1)
If CheckAlert and BarStatus(1) = 2 then
Alert("Specified Criteria Found!");
Example2 )
use a simple flag to stop repeating the alerts.
E.g.


//Declare our flag variable
Vars: RaiseAlert(False);

//Reset our flag every day
If date<>date[1] then RaiseAlert = True;

//If conditions are met then send an alert, but only if the
// alert hasn't already been set off today
If {MyAlertCriteria} and RaiseAlert then Begin
Alert("xxx");
RaiseAlert = False;
end;

2) If ther is a way of sorting alerts in TS2k Radarscreen by time I have not found it - there needs to be a function 'alerttime' maybe this is codeable.
================
Just code it yourself. Radarscreen will sort by whatever variable you plot... it's been years since I worked with it, I can't get more specific than that
-------------------------------------
I may be wrong but as far as I can tell there is no Easylanguage equivelent of e.g EXCEL's TIME NOW

If Neoticker tops out at 200 symbols it is a non starter - i am running 5000 worldwide at pilot level and looking for software and vendor solutions for 25,000 plus - may have to break down to 5000 per box.

I didn't know that Tenfore had a satellite feed.. is that a one way feed where they just blast everything at you? DTN Satellite blasts the entire set of markets to a box and you tell the box which ones you want. They stopped doing the stocks a while back though due to bandwidth constrictions...

As far as I can tell Tenfore Satellite blasts all tickers from US Europe and Asia markets - footprint for satellite as far as I recall is Europe only. If you can stand institutional pricing Comstock covers all markets and their satellite covers US Europe and Asia - whether that extends as far as Australasia I don't know. My advice if anyone wants it is to subscribe through itservice.net as you pay no more get an extra layer off support from them - I have found them to be very helpful and knowledgeable.

Hypertrader are alive and kicking - they just have not upgraded their website since they stopped offering their connection software for free - you can buy by contacting them direct and while they are not adding any new data feeds they are keeping their committment to the installed base by writing new versions if a data vendor makes changes that affect their software. Also a reccomended company in terms of their support.


Thanks for the info... Regarding Radarscreen are you overcomplicating things regarding programming? To alert once per occurence you would code up a flag that would allow alerting, then if an alert happens you would set the flag to not allow alerting, when the condition that causes the alert goes away you would set the flag to once again allow an alert.. i've done it, I just don't have any code examples...

regarding sorting by time... make one of your alert code plots to be the time the alert goes off, Radarscreen can sort by any plotted value as I recall... it's been years so maybe I'm remembering things wrongly but it seems like that is how it worked...

It's good to see that Hyperorder is still up and going... that is an exact clone of the now defunct Dynaorder, and Dynaorder was the most concisely useful little piece of software I ever had the fortune to work with.. it had a few bugs, I found that if you went into penny stocks, when the price went under ten cents it would multiply price by a hundred!! I kid you not, I don't know if an OTC order would go through that far away from the going price but if it did, wow, the burn would be a lasting impression :)
 
Quote from maxpi:

I kid you not, I don't know if an OTC order would go through that far away from the going price but if it did, wow, the burn would be a lasting impression :)

Do you mean that program made many MMs happy?
 
Back
Top