Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

neoticker

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1148
  • Category: Software
  • Founded: May 15, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1506 - 1535 of 14756   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#1506 From: "stnahc" <stnahc@...>
Date: Mon Apr 1, 2002 2:10 pm
Subject: Re: Standard Deviation Bands
stnahc
Send Email Send Email
 
can I summarize what you said as follows,

an indicator that computes the standard deviation of all
the data upto the calculation point.

Lawrence

--- In neoticker@y..., "maxreturn1" <cjh@d...> wrote:
> Hi Louis.  Neither the Bollinger Bands or Keltner bands will meet
my
> needs.  This is because there is a fixed lookback period.  Also, I
am
> ok at using the formula language but I am not at all good at
> programming.  What I need is a standard deviation band indicator
that
> meets the following requirements:
>
> 1)  It computes based on all the data history.  So if I have 500
bars
> plotted, it will look at all 500 bars and calculate user specified
> upper & lower bands.
>
> 2)  It will calculate on a bar by bar basis.  For example, on day
498
> a plot will be returned which represents the previous 498 days.  On
> day 499 a plot will be returned analyzing the previous 499 days,
etc.
>
> Would appreciate your help.  thx.
>
> --- In neoticker@y..., "Louis Lin" <lhclin@t...> wrote:
> > Check out the various types of bands available before rolling
> > your own (e.g. Bollinger, Keltner).  It may save you a lot of
time.
> >
> > If you want to write your own and got stucked, send us what
> > you have and we may be able to quickly solved your problem.
> > -----------------
> > Louis Lin
> > TickQuest Inc    www.tickquest.com
> >
> > ----- Original Message -----
> > From: "maxreturn1" <cjh@d...>
> > To: <neoticker@y...>
> > Sent: Saturday, March 30, 2002 8:47 AM
> > Subject: [neoticker] Standard Deviation Bands
> >
> >
> > > Ken recently developed the xRangeBand indicator for me.  I have
> been
> > > trying to figure out how to write a similar "standard deviation
> band"
> > > indicator in the formula language without much success.  This
> > > indicator would look at the entire data series that is plotted
at
> any
> > > point in time...and return an upper & lower band based on user
> > > specified 1,2...etc standard deviations.  Any help would be much
> > > appreciated.
> > >
> > >
> > >
> > >
> > > To unsubscribe from this group, send an email to:
> > > neoticker-unsubscribe@y...
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
> > >

#1507 From: "Louis Lin" <lhclin@...>
Date: Mon Apr 1, 2002 4:34 pm
Subject: Re: A request for the programmers in this forum
lhclin
Send Email Send Email
 
What you described can be implemented using scripts.

Basically you will use the heap object to store the various 'hits'.
Once you've decided to output, use the report object to display
the result in a report window, from which you can easily export
to a text file for further analysis.

You will need to decide when to accumulate hits and when to
reset the 'hits' in the heap.

If you encounter any problem, let us know and we will be glad
to help.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

----- Original Message -----
From: "all_that_love" <all_that_love@...>
To: <neoticker@yahoogroups.com>
Sent: Sunday, March 31, 2002 9:33 PM
Subject: [neoticker] A request for the programmers in this forum


> Hello Lawrence, Ken, Lois and the other programmers using Neoticker.
> I have an idea, that I can't seem to convert into a workable code for
> Neoticker. I use the EOD version, but I think it should be applicable
> in any time frame. I was surfing the net when I saw a program that
> does what I want to do here, but it is just an add on to a particular
> program. Any way, here is the descripition of the problem, maybe you
> all can help me.
>
> The function will determine the various support/resistance zones for
> a given equity. It shoudl ask for the following input when invoked in
> a given chart:
>
> 1. Beginning Date
> 2. Desired price limits between which the supports and resistances
> should be calculated, with the default being the entire price range
> of the equity.
> 3. The minimum number of hits to consider it as a support or a
> resistance that will be displayed, default minimum should be 2.
> 4. The width of the price band which is to be considered the
> support/resistance zone. Default should be 0, ie. only one price
> level.
>
>
> The output maybe in the following format:
>
> Price                 No. of Hits                     Dates
> Level          as Support     as Resistance  (do we really need them?)
>
> As you can see, just looking at this table, you can easily determine
> the areas of stiff resistance/strong support. It should be a great
> tool for placing profit targets, stop losses etc. Please put in your
> thoughts to be able to make it more user friendly, usable and maybe
> more useful with other features that are escaping me. I would love to
> hear everyone's thoughts on this. Maybe some one can write an excel
> macro?
>
> Good trading everyone, and hope you all had a great easter weekend.
> AM
>
>
>
> To unsubscribe from this group, send an email to:
> neoticker-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#1508 From: "maxreturn1" <cjh@...>
Date: Mon Apr 1, 2002 6:34 pm
Subject: Re: Standard Deviation Bands
maxreturn1
Send Email Send Email
 
Hi Louis.  Yes, this is correct.  Each bar would calculate an upper band & lower
band based on
all of the data up to that point.  NOTE:  Ken coded an indicator called
xrangeband which
essentially does this but uses percentile bands.  I tried to modify this for my
needs but I'm not
having any success.  As always, I very much appreciate your help.

--- In neoticker@y..., "stnahc" <stnahc@y...> wrote:
>
> can I summarize what you said as follows,
>
> an indicator that computes the standard deviation of all
> the data upto the calculation point.
>
> Lawrence
>
> --- In neoticker@y..., "maxreturn1" <cjh@d...> wrote:
> > Hi Louis.  Neither the Bollinger Bands or Keltner bands will meet
> my
> > needs.  This is because there is a fixed lookback period.  Also, I
> am
> > ok at using the formula language but I am not at all good at
> > programming.  What I need is a standard deviation band indicator
> that
> > meets the following requirements:
> >
> > 1)  It computes based on all the data history.  So if I have 500
> bars
> > plotted, it will look at all 500 bars and calculate user specified
> > upper & lower bands.
> >
> > 2)  It will calculate on a bar by bar basis.  For example, on day
> 498
> > a plot will be returned which represents the previous 498 days.  On
> > day 499 a plot will be returned analyzing the previous 499 days,
> etc.
> >
> > Would appreciate your help.  thx.
> >
> > --- In neoticker@y..., "Louis Lin" <lhclin@t...> wrote:
> > > Check out the various types of bands available before rolling
> > > your own (e.g. Bollinger, Keltner).  It may save you a lot of
> time.
> > >
> > > If you want to write your own and got stucked, send us what
> > > you have and we may be able to quickly solved your problem.
> > > -----------------
> > > Louis Lin
> > > TickQuest Inc    www.tickquest.com
> > >
> > > ----- Original Message -----
> > > From: "maxreturn1" <cjh@d...>
> > > To: <neoticker@y...>
> > > Sent: Saturday, March 30, 2002 8:47 AM
> > > Subject: [neoticker] Standard Deviation Bands
> > >
> > >
> > > > Ken recently developed the xRangeBand indicator for me.  I have
> > been
> > > > trying to figure out how to write a similar "standard deviation
> > band"
> > > > indicator in the formula language without much success.  This
> > > > indicator would look at the entire data series that is plotted
> at
> > any
> > > > point in time...and return an upper & lower band based on user
> > > > specified 1,2...etc standard deviations.  Any help would be much
> > > > appreciated.
> > > >
> > > >
> > > >
> > > >
> > > > To unsubscribe from this group, send an email to:
> > > > neoticker-unsubscribe@y...
> > > >
> > > >
> > > >
> > > > Your use of Yahoo! Groups is subject to
> > http://docs.yahoo.com/info/terms/
> > > >

#1509 From: "Louis Lin" <lhclin@...>
Date: Mon Apr 1, 2002 8:29 pm
Subject: McAfee, eSignal and NeoTicker
lhclin
Send Email Send Email
 
As part of the stability testing for NeoTicker, I am installing and running
different virus scanners and firewalls with NeoTicker.  The first one I
tried is the McAfee virus scanner and firewall.

There is no problem found with the McAfee virus scanner.  However,
the McAfee firewall will break eSignal 6.3.  This is true regardless of
whether NeoTicker is running or not.  The implication is some of the
eSignal stability problems are related to firewalls (McAfee and
other brands).

I am unable to tweet the McAfee firewall to a point that eSignal will
work.  I am not an expert of the McAfee product so a solution may exist.
I just don't have a one.

Some other firewall will work fine with eSignal.  Our company uses a
dedicate
machine that does packet filtering as the office firewall and eSignal works
fine with our office firewall.

The McAfee virus scanner and firewall does not create any problem for
other data feeds.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

#1510 From: "John Mitchell" <jm23bg@...>
Date: Mon Apr 1, 2002 10:36 pm
Subject: Re: McAfee, eSignal and NeoTicker
jm23bg
Send Email Send Email
 
I have esignal not responding at times ( shown in task manager) could this be a firewall problem.
Its usually ok with N/T on its own, but if I run the esig program (even  on its own) I have this problem, as a result, I am unable to use the esig program.
I use Mcafee Anti virus but zone alarm (free) as firewall.
 
JM
----- Original Message -----
From: Louis Lin
Sent: Monday, April 01, 2002 9:29 PM
Subject: [neoticker] McAfee, eSignal and NeoTicker

As part of the stability testing for NeoTicker, I am installing and running
different virus scanners and firewalls with NeoTicker.  The first one I
tried is the McAfee virus scanner and firewall.

There is no problem found with the McAfee virus scanner.  However,
the McAfee firewall will break eSignal 6.3.  This is true regardless of
whether NeoTicker is running or not.  The implication is some of the
eSignal stability problems are related to firewalls (McAfee and
other brands).

I am unable to tweet the McAfee firewall to a point that eSignal will
work.  I am not an expert of the McAfee product so a solution may exist.
I just don't have a one.

Some other firewall will work fine with eSignal.  Our company uses a
dedicate
machine that does packet filtering as the office firewall and eSignal works
fine with our office firewall.

The McAfee virus scanner and firewall does not create any problem for
other data feeds.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com



To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#1511 From: "Louis Lin" <lhclin@...>
Date: Mon Apr 1, 2002 11:32 pm
Subject: Re: McAfee, eSignal and NeoTicker
lhclin
Send Email Send Email
 
If I have McAfee firewall on and run eSignal, the Turbofeed data manager
will crash and the eSignal program will not receive any data.  So it may be
related.
 
ZoneAlarm is on my list of firewalls to test.
 
At first I thought the McAfee virus scanner was causing the problem but
after I removed the McAfee firewall, I haven't encounter any problem with
the virus scanner running.
 
-----------------
Louis Lin
TickQuest Inc    www.tickquest.com
----- Original Message -----
Sent: Monday, April 01, 2002 5:36 PM
Subject: Re: [neoticker] McAfee, eSignal and NeoTicker

I have esignal not responding at times ( shown in task manager) could this be a firewall problem.
Its usually ok with N/T on its own, but if I run the esig program (even  on its own) I have this problem, as a result, I am unable to use the esig program.
I use Mcafee Anti virus but zone alarm (free) as firewall.
 
JM
----- Original Message -----
From: Louis Lin
Sent: Monday, April 01, 2002 9:29 PM
Subject: [neoticker] McAfee, eSignal and NeoTicker

As part of the stability testing for NeoTicker, I am installing and running
different virus scanners and firewalls with NeoTicker.  The first one I
tried is the McAfee virus scanner and firewall.

There is no problem found with the McAfee virus scanner.  However,
the McAfee firewall will break eSignal 6.3.  This is true regardless of
whether NeoTicker is running or not.  The implication is some of the
eSignal stability problems are related to firewalls (McAfee and
other brands).

I am unable to tweet the McAfee firewall to a point that eSignal will
work.  I am not an expert of the McAfee product so a solution may exist.
I just don't have a one.

Some other firewall will work fine with eSignal.  Our company uses a
dedicate
machine that does packet filtering as the office firewall and eSignal works
fine with our office firewall.

The McAfee virus scanner and firewall does not create any problem for
other data feeds.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com



To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#1512 From: "all_that_love" <all_that_love@...>
Date: Tue Apr 2, 2002 2:52 am
Subject: Re: A request for the programmers in this forum
all_that_love
Send Email Send Email
 
Lois

First I want to thank you all for showing me how to use the color
study indicator. It is just great!!!!!! I just absolutely love it.
Such a great visual aid to notice the subtle changes in momentum etc.

Well, Lois, I am a request for you. I am not a good programmer...
actually I should say that I am not a programmer at all. I can
understand the concept you were trying to explain, but I could not
even start to write the code. Is it possible for you to atleast do a
skeleton code that does the actual pattern search and report it? I
maybe able to modify it further. I am not even sure I can do that
too. :(

Hope you all have a great day and good trading everyone
AM

#1513 From: "all_that_love" <all_that_love@...>
Date: Tue Apr 2, 2002 4:26 am
Subject: Holiday List
all_that_love
Send Email Send Email
 
I use NTEOD version 2.73. I am noticing that last Good Friday
(3/29/02) does not appear as a holiday on my charts. When I checked
my menu bar, I don't see any holiday list manager as menu option. I
tried setting everything to default settings, but my holiday list
manager has vanished!

Is there a fix for this or that Holiday list manager is not a feature
of NTEOD?

Thank you very much for your help
AM

#1514 From: "rhodge_uk" <r-hodge@...>
Date: Tue Apr 2, 2002 12:02 pm
Subject: Re: Holiday List
rhodge_uk
Send Email Send Email
 
As a follow up to this and my already mentioned problem with the
holiday list manager, 29-Mar-2002 appeared as a gap in all my
intraday and eod charts in NT2.72 despite them all being switched to
use the default 'US Stock' calendar which contains that date as a
holiday.

R

--- In neoticker@y..., "all_that_love" <all_that_love@y...> wrote:
> I use NTEOD version 2.73. I am noticing that last Good Friday
> (3/29/02) does not appear as a holiday on my charts. When I checked
> my menu bar, I don't see any holiday list manager as menu option. I
> tried setting everything to default settings, but my holiday list
> manager has vanished!
>
> Is there a fix for this or that Holiday list manager is not a
feature
> of NTEOD?
>
> Thank you very much for your help
> AM

#1515 From: "maxreturn1" <cjh@...>
Date: Tue Apr 2, 2002 1:36 pm
Subject: Problems with "Add List" function & Wish List Suggestion
maxreturn1
Send Email Send Email
 
Louis, I have tried the "Add List" function but it is not working.
My computer locks up & I have to reboot.  I start out by opening a
chart, then adding a data series.  Then I click on chart manager and
then "add list".  When I try to add a symbol, that's when my computer
freezes.  Am I doing something wrong?  Perhaps you could take me
through a detailed example of how to use this function?  I really
don't understand how I can open multiple charts at the same time
using this feature.  WISH LIST SUGGESTION:  Currently one must first
open a time chart and then add a data series.  It would be nice if
when one chooses Window-Open...an open file dialog would pop up that
would allow the user to choose a directory path and then choose
either a single data file OR multiple data files to open.  Then when
the user clicks "Open", the program would create a chart/window for
each data file chosen.

Best Regards

--- In neoticker@y..., "Louis Lin" <lhclin@t...> wrote:
> 1) Can be done already in chart manger.  Check out the 'Add List'
function
> under
>     the Data tab.
>
> 2) Will put into wish list.
> -----------------
> Louis Lin
> TickQuest Inc    www.tickquest.com
>
> ----- Original Message -----
> From: "maxreturn1" <cjh@d...>
> To: <neoticker@y...>
> Sent: Saturday, March 30, 2002 11:18 AM
> Subject: [neoticker] Holiday list & wish list item
>
>
> > Lawrence/Louis/Ken...
> >
> > Will the holiday list problem for windows 98 be resolved in the
next
> > release (2.8)?  When will the EOD version be avaiable?
> >
> > WISH LIST ITEMS:
> >
> > 1)  Ability to open multiple charts instead of having to do them
> > individually.  Metastock has this feature and it was very helpful.
> >
> > 2)  Ability to apply the same indicator to multiple open charts at
> > the same time.  Also, the ability to delete the same indicator
from
> > multiple open charts.
> >
> > The above features obviously would save a lot of time/mouseclicks
for
> > the analyst who wants to research a lot of ideas on the same set
of
> > securities.
> >
> > Thanks & keep up the good work!
> >
> >
> >
> >
> > To unsubscribe from this group, send an email to:
> > neoticker-unsubscribe@y...
> >
> >
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >

#1516 From: "Louis Lin" <lhclin@...>
Date: Tue Apr 2, 2002 3:57 pm
Subject: Re: Holiday List
lhclin
Send Email Send Email
 
Holiday list does not work right in many Win95/98/ME installation
and has been disabled.

You have to use Win NT/2000/XP in order to have it functional.
-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

----- Original Message -----
From: "all_that_love" <all_that_love@...>
To: <neoticker@yahoogroups.com>
Sent: Monday, April 01, 2002 11:26 PM
Subject: [neoticker] Holiday List


> I use NTEOD version 2.73. I am noticing that last Good Friday
> (3/29/02) does not appear as a holiday on my charts. When I checked
> my menu bar, I don't see any holiday list manager as menu option. I
> tried setting everything to default settings, but my holiday list
> manager has vanished!
>
> Is there a fix for this or that Holiday list manager is not a feature
> of NTEOD?
>
> Thank you very much for your help
> AM
>
>
>
> To unsubscribe from this group, send an email to:
> neoticker-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#1517 From: "Louis Lin" <lhclin@...>
Date: Tue Apr 2, 2002 4:10 pm
Subject: Re: Problems with "Add List" function & Wish List Suggestion
lhclin
Send Email Send Email
 
It looks like you are doing the right thing.  The procedure is for add list:
1. Add a data to a chart
2. Press Add List, then specify a symbol list
3. The symbols in the list will be added to the chart, using the first
     data series as a template.

I can't reproduce the crash.  Can you tell me which symbol list you are
adding and what kind of data series you've added to the chart?  Also
if the crash is reproducible.  Thanks.
-----------------
Louis Lin
TickQuest Inc    www.tickquest.com


----- Original Message -----
From: "maxreturn1" <cjh@...>
To: <neoticker@yahoogroups.com>
Sent: Tuesday, April 02, 2002 8:36 AM
Subject: [neoticker] Problems with "Add List" function & Wish List
Suggestion


> Louis, I have tried the "Add List" function but it is not working.
> My computer locks up & I have to reboot.  I start out by opening a
> chart, then adding a data series.  Then I click on chart manager and
> then "add list".  When I try to add a symbol, that's when my computer
> freezes.  Am I doing something wrong?  Perhaps you could take me
> through a detailed example of how to use this function?  I really
> don't understand how I can open multiple charts at the same time
> using this feature.  WISH LIST SUGGESTION:  Currently one must first
> open a time chart and then add a data series.  It would be nice if
> when one chooses Window-Open...an open file dialog would pop up that
> would allow the user to choose a directory path and then choose
> either a single data file OR multiple data files to open.  Then when
> the user clicks "Open", the program would create a chart/window for
> each data file chosen.
>
> Best Regards
>
> --- In neoticker@y..., "Louis Lin" <lhclin@t...> wrote:
> > 1) Can be done already in chart manger.  Check out the 'Add List'
> function
> > under
> >     the Data tab.
> >
> > 2) Will put into wish list.
> > -----------------
> > Louis Lin
> > TickQuest Inc    www.tickquest.com
> >
> > ----- Original Message -----
> > From: "maxreturn1" <cjh@d...>
> > To: <neoticker@y...>
> > Sent: Saturday, March 30, 2002 11:18 AM
> > Subject: [neoticker] Holiday list & wish list item
> >
> >
> > > Lawrence/Louis/Ken...
> > >
> > > Will the holiday list problem for windows 98 be resolved in the
> next
> > > release (2.8)?  When will the EOD version be avaiable?
> > >
> > > WISH LIST ITEMS:
> > >
> > > 1)  Ability to open multiple charts instead of having to do them
> > > individually.  Metastock has this feature and it was very helpful.
> > >
> > > 2)  Ability to apply the same indicator to multiple open charts at
> > > the same time.  Also, the ability to delete the same indicator
> from
> > > multiple open charts.
> > >
> > > The above features obviously would save a lot of time/mouseclicks
> for
> > > the analyst who wants to research a lot of ideas on the same set
> of
> > > securities.
> > >
> > > Thanks & keep up the good work!
> > >
> > >
> > >
> > >
> > > To unsubscribe from this group, send an email to:
> > > neoticker-unsubscribe@y...
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
> > >
>
>
>
> To unsubscribe from this group, send an email to:
> neoticker-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#1518 From: "Louis Lin" <lhclin@...>
Date: Tue Apr 2, 2002 8:29 pm
Subject: Testing NeoTicker with ZoneAlarm
lhclin
Send Email Send Email
 
I've tested ZoneAlarm 2.6.362 with NeoTicker.

I've found no problem running NeoTicker with ZoneAlarm.  However
for eSignal 6.3, in one occasion, the eSignal program has trouble launching
the Turbofeed manager, but this problem is not reproducible.

In ZoneAlarm, I allow full access including server for NeoTicker,
eSignal and Turbofeed manager.

There is no known issue with ZoneAlarm and other data feeds.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

#1519 From: "maxreturn1" <cjh@...>
Date: Wed Apr 3, 2002 6:50 pm
Subject: Need Opinion from Programmers in this forum!
maxreturn1
Send Email Send Email
 
I have minimal programming experience.  I'm barely good enough to write simple
VBA macros
for Excel.  However, It is my intention to learn how to program in one of the
languages that
Neoticker will accept so I won't have to bother Ken, Lawrence & Louis so much.

1)  Which of the programming languages would be easiest for me to learn?

2)  Is there a "Programming for dummies" book available?  There is such a book
written for VBA
for Excel.  This really helped speed up my learning curve.  As a beginner I am
looking for some
materials that will hold me by the hand and take be through the basics before
moving on to the
more advanced concepts.

Any suggestions/advice is much appreciated!

#1520 From: "Louis Lin" <lhclin@...>
Date: Wed Apr 3, 2002 9:55 pm
Subject: Is a beta program for 2.8 a good idea?
lhclin
Send Email Send Email
 
We are close to finishing the coding for NeoTicker 2.8
(realtime version).

We want to know if users prefer a beta program.  The
beta will be released in about a week and we will closely
follow up on bug fixes, etc.

Before 2.8,  we usually do the beta testing in house
but NeoTicker has grown to a point it is difficult to
catch all the bugs ourselves.

Want to hear your opinions.  Thanks.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

#1521 From: Jerry Hobby <mrjerryhobby@...>
Date: Thu Apr 4, 2002 3:03 am
Subject: Re: Need Opinion from Programmers in this forum!
swing_trader_tx
Send Email Send Email
 

Decision Time:

a)  DELPHI - Most examples are in DELPHI, this would be easiest to learn since there are so many examples.  You will probably never use Delphi for anything other than Neoticker.

b)  VBSCRIPT - This knowledge would be highly leveragable to other things such as Excel AND you have some experience. It's also easy, just fewer examples.  For NeoTicker, its slightly more challenging than DELPHI, IMHO.  VBSCRIPT is a very useful skill.

c) JAVASCRIPT - This is very common for web authoring and is the most popular of the three.  However, Microsoft is trying to push it out of the Windows architecture, it is also the most complex language, and there are even fewer examples.

I recommend VBSCRIPT since you also use VBA in Excel.

Jerry

 

  maxreturn1 <cjh@...> wrote:

I have minimal programming experience.  I'm barely good enough to write simple VBA macros
for Excel.  However, It is my intention to learn how to program in one of the languages that
Neoticker will accept so I won't have to bother Ken, Lawrence & Louis so much.

1)  Which of the programming languages would be easiest for me to learn?

2)  Is there a "Programming for dummies" book available?  There is such a book written for VBA
for Excel.  This really helped speed up my learning curve.  As a beginner I am looking for some
materials that will hold me by the hand and take be through the basics before moving on to the
more advanced concepts.

Any suggestions/advice is much appreciated!



To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax

#1522 From: Michael Mueller <new_systematic@...>
Date: Thu Apr 4, 2002 7:29 am
Subject: Re: Is a beta program for 2.8 a good idea?
new_systematic
Send Email Send Email
 
I think that's a good idea. Among your users there are
some who focus on the UI and the visual capabilities,
others (like me) might be able to test the
indicator/system and programming based stuff of NT.

Michael



--- Louis Lin <lhclin@...> wrote:

<HR>
<html><body>


<tt>
We are close to finishing the coding for NeoTicker
2.8<BR>
(realtime version).<BR>
<BR>
We want to know if users prefer a beta program. 
The<BR>
beta will be released in about a week and we will
closely<BR>
follow up on bug fixes, etc.<BR>
<BR>
Before 2.8,  we usually do the beta testing in
house <BR>
but NeoTicker has grown to a point it is difficult
to<BR>
catch all the bugs ourselves.<BR>
<BR>
Want to hear your opinions.  Thanks.<BR>
<BR>
-----------------<BR>
Louis Lin<BR>
TickQuest Inc    www.tickquest.com<BR>
<BR>
</tt>

<br>

<!-- |**|begin egp html banner|**| -->

<table border=0 cellspacing=0 cellpadding=2>
<tr bgcolor=#FFFFCC>
<td align=center><font size="-1"
color=#003399><b>Yahoo! Groups Sponsor</b></font></td>
</tr>
<tr bgcolor=#FFFFFF>
<td align=center width=470><table border=0
cellpadding=0 cellspacing=0><tr><td align=center><font
face=arial size=-2>ADVERTISEMENT</font><br><a
href="http://rd.yahoo.com/M=215002.1954253.3462811.1261774/D=egroupweb/S=1705632\
198:HM/A=1000239/R=0/*http://ads.x10.com/?bHlhaG9vaG0xLmRhd=1017870935%3eM=21500\
2.1954253.3462811.1261774/D=egroupweb/S=1705632198:HM/A=1000239/R=1"
target=_top><img
src="http://ads.x10.com/?Z3lhaG9vaG0xLmRhd=1017870935%3eM=215002.1954253.3462811\
.1261774/D=egroupweb/S=1705632198:HM/A=1000239/R=2"
alt="" width="300" height="250"
border="0"></a></td></tr></table></td>
</tr>
<tr><td><img alt="" width=1 height=1
src="http://us.adserver.yahoo.com/l?M=215002.1954253.3462811.1261774/D=egroupmai\
l/S=1705632198:HM/A=1000239/rand=351904715"></td></tr>
</table>

<!-- |**|end egp html banner|**| -->


<br>
<tt>
To unsubscribe from this group, send an email to:<BR>
neoticker-unsubscribe@yahoogroups.com<BR>
<BR>
</tt>
<br>

<br>
<tt>Your use of Yahoo! Groups is subject to the <a
href="http://docs.yahoo.com/info/terms/">Yahoo! Terms
of Service</a>.</tt>
</br>

</body></html>



__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

#1523 From: "John O. Romero" <jromero@...>
Date: Thu Apr 4, 2002 12:15 pm
Subject: Re: Is a beta program for 2.8 a good idea?
johnromeronc
Send Email Send Email
 
At this point I would agree an 'user' beta might be a good thing.  I am willing to participate, but it will have to be limited, as I will be out of town on vacation starting 4/12.  Off-line testing and limited time on some nights only.  I should be able to participate in the future ones.

John


At 4/3/2002 04:55 PM, you wrote:
We are close to finishing the coding for NeoTicker 2.8
(realtime version).

We want to know if users prefer a beta program.  The
beta will be released in about a week and we will closely
follow up on bug fixes, etc.

Before 2.8,  we usually do the beta testing in house
but NeoTicker has grown to a point it is difficult to
catch all the bugs ourselves.

Want to hear your opinions.  Thanks.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com


Yahoo! Groups Sponsor
ADVERTISEMENT
7f98f2b.jpg
7f99008.jpg

To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#1524 From: "John O. Romero" <jromero@...>
Date: Thu Apr 4, 2002 1:13 pm
Subject: WishList items.
johnromeronc
Send Email Send Email
 
Lawrence and others,

I few things I would like to see to improve my productivity. I realize the
next release is already locked down.


- data window wishes
    -- a shortcut key to pop it up
    -- a user option to set the window type to "always on top".
    -- If I click on the tool icon and it is already selected (or light in
color) and it is not visible, NT assume I want to close the window. I would
like it to pop to the top.  I think that it is correct W2K action, but
currently it closes the data window, then I need to click on the icon again
to make it reappear.  Same is true if I do this via the main popup menu, If
Data View Window is checked,   Don't know if it is worth your time to
change this since it conforms to windows standards ( i think?).  If you
provided an Always On Top option then every time I clicked on the icon
would be to open the data window.

- Toolbar wishes
    -- I want the ability to be able to right double click or some
shortcut/hot key to cause the toolbar to appear.  The location would be
where I double click from.  It would be for a one time use and disappear
after I click on an Icon.  If that icon had templates associated with it,
then that sub-list/menu would pop up.


- Time and Sale window
    -- The ability to pause  the scrolling in the window.  When I take it
off of pause it skips to the current or scrolls to the current time/sale it
is up to you - Skip to current is ok with me.
    -- Ability to select fonts
    -- Ability to filter records displayed via a filter - My first choice is
on Volume  -- Ex.   volume > 1000  then display

- Main Popup window
    -- It is too long. it needs to be customizable.  There are a number of
things I have never used.  I am sure it is the same for many others, but
-  I confident in saying, they have a different set of 'daily use or
favorite' menu items.

Chart Mgr  --> Objects tab
It would be nice to be able to see the start and end date/times.  There
have been times I go to delete an object as it is no longer valid and there
have been 'extra' trend lines (as an example).  I guess I clicked or dbl
clicked or something (obviously)!!!  If it truly was an error, most of the
times it was with both start and end at almost, if not the same point.  The
problem I am having is this. When I select an object, it could be one of
two possible, but very different scenarios.   Scenario One - it is a
historical object, that I want to keep, but is off the current visual
window and I don't see it when I select it.  The second is an object that
is on the screen, but is not immediately obvious to the eye, because I am
looking for a line not a point.  Do I delete the selected object or
not.  That is the real problem - the delete key.    ; - (

Question - What does happen to objects that are associated with a window
that are old?  An Old object has a start and/or end date & time prior to
the start of the data being used to create the chart.  I would hope they do
not go away, but stay in the file,   From time to time I do like to load a
lot of data and zoom out to be able to get a better picture of what I did,
why and see how it fits into the big picture instead of only see the
current right side of the chart.

John

#1525 From: "Franz Schildberger" <franz.schildberger@...>
Date: Thu Apr 4, 2002 12:29 pm
Subject: Antw: Re: Need Opinion from Programmers in this forum!
sunny_at2002
Send Email Send Email
 
One thing I want to add here in favor of VBScript is the source code
debugger of VBScript.
It makes it much easier for you to understand the problems of your code
than
to put in lots of print statements to see which values your variables
have
and to track the execution flow through your scripts.

Franz


>>> mrjerryhobby@... 04.04.2002 05:03:39 >>>

  Decision Time:
a)  DELPHI - Most examples are in DELPHI, this would be easiest to
learn since there are so many examples.  You will probably never use
Delphi for anything other than Neoticker.
b)  VBSCRIPT - This knowledge would be highly leveragable to other
things such as Excel AND you have some experience. It's also easy, just
fewer examples.  For NeoTicker, its slightly more challenging than
DELPHI, IMHO.  VBSCRIPT is a very useful skill.
c) JAVASCRIPT - This is very common for web authoring and is the most
popular of the three.  However, Microsoft is trying to push it out of
the Windows architecture, it is also the most complex language, and
there are even fewer examples.
I recommend VBSCRIPT since you also use VBA in Excel.
Jerry

   maxreturn1 <cjh@...> wrote: I have minimal programming
experience.  I'm barely good enough to write simple VBA macros
for Excel.  However, It is my intention to learn how to program in one
of the languages that
Neoticker will accept so I won't have to bother Ken, Lawrence & Louis
so much.

1)  Which of the programming languages would be easiest for me to
learn?

2)  Is there a "Programming for dummies" book available?  There is such
a book written for VBA
for Excel.  This really helped speed up my learning curve.  As a
beginner I am looking for some
materials that will hold me by the hand and take be through the basics
before moving on to the
more advanced concepts.

Any suggestions/advice is much appreciated!


Yahoo! Groups SponsorADVERTISEMENT

To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



---------------------------------
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax

#1526 From: Michael Mueller <new_systematic@...>
Date: Thu Apr 4, 2002 1:30 pm
Subject: Re: Progress on version 2.8
new_systematic
Send Email Send Email
 
What are the new features we can expect from 2.8 ?

--- stnahc <stnahc@...> wrote:

<HR>
<html><body>


<tt>
<BR>
We are about to freeze the new features for 2.8.<BR>
<BR>
Testing and documentation will be the next phrase.<BR>
<BR>
Will post a summary of new features in the coming
week,<BR>
for now, just an update of more new features,<BR>
<BR>
1. candlestick hollow type <BR>
2. up down left right marker styles that point exactly
to <BR>
   specified price for use in indicators and
trading system<BR>
3. day change marker<BR>
4. new transaction methods - linkid, barsnum<BR>
5. smarter scrolling of chart - arrow key controlled
scroll<BR>
6. new meta style - region<BR>
7. a quick access panel for easy chart
manipulation<BR>
8. internalize more indicators for speed<BR>
<BR>
Since I posted quite a few updates, thus the complete
list will be<BR>
pretty long :)<BR>
<BR>
<BR>
Lawrence<BR>
<BR>
<BR>
<BR>
</tt>

<br>

<!-- |**|begin egp html banner|**| -->

<table border=0 cellspacing=0 cellpadding=2>
<tr bgcolor=#FFFFCC>
<td align=center><font size="-1"
color=#003399><b>Yahoo! Groups Sponsor</b></font></td>
</tr>
<tr bgcolor=#FFFFFF>
<td align=center width=470><table border=0
cellpadding=0 cellspacing=0><tr><td align=center><font
face=arial size=-2>ADVERTISEMENT</font><br>
<MAP NAME="Yahoo_300x250"><area shape="rect"
coords="0,0,299,182"
href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=1705632\
198:HM/A=1009646/R=0/*http://ad.doubleclick.net/clk;4022902;6990658;n?http://www\
.datek.com/ads/options/index.html?sc=M7Q7D9VA4R&pc=JANWBFTB"
ALT=""><area shape="rect" coords="0,182,299,249"
"href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=170563\
2198:HM/A=1009646/R=1/*http://ad.doubleclick.net/clk;4022913;6990658;p?http://op\
tionsclearing.com/publications/risks/risks.jsp""
ALT=""></MAP><IMG
SRC="http://us.a1.yimg.com/us.yimg.com/a/da/datek/300x250_loweroptions.gif"
height="250" width="300" hspace="0" border="0"
usemap="#Yahoo_300x250"></td></tr></table></td>
</tr>
<tr><td><img alt="" width=1 height=1
src="http://us.adserver.yahoo.com/l?M=219695.1919764.3411390.1269404/D=egroupmai\
l/S=1705632198:HM/A=1009646/rand=527599413"></td></tr>
</table>

<!-- |**|end egp html banner|**| -->


<br>
<tt>
To unsubscribe from this group, send an email to:<BR>
neoticker-unsubscribe@yahoogroups.com<BR>
<BR>
</tt>
<br>

<br>
<tt>Your use of Yahoo! Groups is subject to the <a
href="http://docs.yahoo.com/info/terms/">Yahoo! Terms
of Service</a>.</tt>
</br>

</body></html>



__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

#1527 From: "Franz Schildberger" <franz.schildberger@...>
Date: Thu Apr 4, 2002 12:43 pm
Subject: Antw: Is a beta program for 2.8 a good idea?
sunny_at2002
Send Email Send Email
 
yes, I would participate in a beta program and test the
functions I use anyway. But please do not make the
mistake to relay only on the user beta tests, I see them as
a valuable add on to your own beta tests.

For long term usage I would recommend thinking
about an automated testing tool. I have made very good
experiences with that sort of tools in a big standard software
project with more than 20.000 installations and 2-3 releases
per year. Of cause you have to put in much effort in building
the testscripts but this investment pays off with every release
you can test automatically.

Nice Regards,

Franz


>>> lhclin@... 03.04.2002 23:55:05 >>>
We are close to finishing the coding for NeoTicker 2.8
(realtime version).

We want to know if users prefer a beta program.  The
beta will be released in about a week and we will closely
follow up on bug fixes, etc.

Before 2.8,  we usually do the beta testing in house
but NeoTicker has grown to a point it is difficult to
catch all the bugs ourselves.

Want to hear your opinions.  Thanks.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com


------------------------ Yahoo! Groups Sponsor

To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/

#1528 From: "Louis Lin" <lhclin@...>
Date: Thu Apr 4, 2002 3:44 pm
Subject: Re: Is a beta program for 2.8 a good idea?
lhclin
Send Email Send Email
 
What we hope the beta will achieve is users can try out the features they commonly
use. 
 
The user beta can give us feedbacks on whether the new code in 2.8 breaks any
existing things.   A tight feedback loop is possible because we won't start working
on 2.9 until all the serious bugs in 2.8 have been resolved.
 
-----------------
Louis Lin
TickQuest Inc    www.tickquest.com
----- Original Message -----
Sent: Thursday, April 04, 2002 7:15 AM
Subject: Re: [neoticker] Is a beta program for 2.8 a good idea?

At this point I would agree an 'user' beta might be a good thing.  I am willing to participate, but it will have to be limited, as I will be out of town on vacation starting 4/12.  Off-line testing and limited time on some nights only.  I should be able to participate in the future ones.

John


At 4/3/2002 04:55 PM, you wrote:
We are close to finishing the coding for NeoTicker 2.8
(realtime version).

We want to know if users prefer a beta program.  The
beta will be released in about a week and we will closely
follow up on bug fixes, etc.

Before 2.8,  we usually do the beta testing in house
but NeoTicker has grown to a point it is difficult to
catch all the bugs ourselves.

Want to hear your opinions.  Thanks.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com


Yahoo! Groups Sponsor
ADVERTISEMENT
7f98f2b.jpg
7f99008.jpg

To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


To unsubscribe from this group, send an email to:
neoticker-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#1529 From: "Louis Lin" <lhclin@...>
Date: Thu Apr 4, 2002 4:11 pm
Subject: Re: Progress on version 2.8
lhclin
Send Email Send Email
 
Here is the more updated what's new for 2.8.  You may notice
some features/bug fixes are marked "not done".  We are still working
on those.

Louis

----------------------------------------------------------------------
New Features and Improvements

DDE Link Manager

- NeoTicker can now continuous update an external application such as Excel
through DDE link. The DDE link manager provides the user interface to set up
such DDE link

Time Frame Manager

- A centralize place to create time frames. You specify information such as
trading hours, holidays, time or bar driven and associate these information
with a specific name. Currently, only the DDE Link Manager supports time
frames created by the Time Frame Manager. Time frame service will be
available to other windows such as charts in upcoming releases.

Top List Function Window

- A new type of function window.

- For internet feed such as Quote.com, eSignal and MyTrack, the top list
function window reports the top list sent out by the Internet data provider.
Examples of top list are highest volume in NY, most active in NY, etc.

- For M3 users, NeoTicker creates customized top list.

Formula-driven Tick Filter

- NeoTicker introduces a new type of tick filter. Currently you can apply
individual tick filter to data series in charts.

- The filter is user customizable using NeoTicker's formula language. You
can decide whether to filter ticks based on condition written using
NeoTicker's formula language. Furthermore, you can modify tick value, volume
and time information using formulas.

- Usages:

- Filter out bad ticks

- Modifying tick value

- Modifying tick volume

- Modifying time stamp (e.g. time warpping effect such as diluating one hour
of trading into three hours).

- A Tick Filter Manager is provided as the user interface


Quote Window

- You can now auto sort by timer

- Sorting accuracy has been improved. Digits that are outside of the
significant value of cell display are now used in sorting

- Quote window now supports formatting. Cells can be formatted globally or
by column

- Quote window column properties form can now switch to another column by

using the new switch column arrows button

- Quote window now have tool buttons to help speed up common operations.
This option can be easily turn off in main window>visual tab.

Time Chart

- You can re-arrange the display order of data and indicators. For example,
display one indicator underneath a data, another indicator on top of the
data.

- User panel in charts to let beginner users get to work quickly (easily
turn off in main window>visual tab). The user panel lets new user enter
symbol, indicators, adjust days to load and managing panes without going
through the popup menus.

- Intelligent new indicator placement. For a new indicator, it will create
new pane if needed or find a pane that is suitable for the indicator. This
option can be easily turn off in main window>visual tab.

- Pressing the arrow keys will scroll the chart one bar at a time

- New bar spacing adjustment (buttons, shift+ and shift-) that adjusts chart

zoom level at 1/20 of the regular zoom level

- Custom days to load can now help you estimate the number of days to load
based on a calendar day

- Ctrl-F11 is now a short cut to capture chart image to file

- Chart grid line can be turn on for horizontal only, vertical only, all, or
none

- Show all and hide all for data, indicator, drawing objects in chart
manager

- Improved tolerance for drag and dropping data and indicators between panes

- You can pan a price axis directly by dragging the price axis area. If you
hold the shift key, you can rescale the price axis. This operation will
automatically turn off auto scaling.

- Time chart now supports mouse wheel scrolling

- Bar space is better preserved during refresh and morning morning restart

- Improved scroll to end behavior during morning restart

- Candle stick now supports hollow drawing type

- Session break drawing is now supported

- Data view now supports user defined colors and background

Indicators

- New indicator meta style - region. A region of the chart is colored
according to indicator value

- Parameter entry UI has been updated for the following indicators - fml,
fml2, vol formula, highlight, highlight bar, color fml

- Highlight fml can change position to any formula result, not just high/low

- Almost all indicators have been internalized for performance. Indicators
that are expected to be modified by users are in script form, e.g. trading
systems.

- New and improved markers (up, down, left, right). All markers line up to
exact price point

- New indicators are introduced:

- aroon up, aroon down and aroon oscillator

- bar since

- cumulate

- gap, gap up, gap down

- highest, highest bar

- lowest, lowest bar

- MACD modified

- max, min

- ADX rating

- Adaptive moving average

- zig zag

- value when (status: unfinish)

- variable length standard deviation (status: unfinish)

Formula Language

- New internal formula functions - round, dayofweek, frac

- New datetime field access in formula language for both quote window and
script formula - DT or DateTime

Holiday Lists

- Import/Export holiday lists

Trading Systems

- More transaction object methods - linkid barsnum

Main Window

- "Program>Internet Options" has been renamed to "Internet Options for Web
EOD Data"

- Better explaination for the large caption/regular caption option in main
window

Data Feed

- In disk cache, there is a new option "Auto Verify Cache". When a cache
file is missing, if this option is set, then data is always request from the
server. If this option is not set, then data is not request from the server
unless it is today's data. Turning off "Auto Verify Cache" avoids attempts
to reload data in empty spots inside the cache and speeds up loading. The
performance boost is especially noticable for long term minute charts.

- MyTrack support (beta). Currently support minute time frames and above,
Level 2 and news. What is missing:

- subminute time frames (seconds, ticks)

- volume distribution

- option chain


Indicator Writing

- For datetime and formula parameters, you can now set the field type to
such. When the indicator is in used, the user can use the respective UI for
these parameters for easy data entry

Misc

- If you have customized colors in a color dialog, the colors are saved and
will be available in all color dialogs. This lets you easily create
consistent colors among different parts of the program.

- Ability to send symbol list directly between function windows without
first saving the symbol list to a file

- Many managers are moved from the Program menu to the new Manager menu to
reduce the size of the Program menu

Bugs Fixed

- In quote window, create a new blank line, click on the new blank line,

sort ascending, then click on the first row will cause a symbol to

disappear

- Keep pressing the clear button in ticker setup can cause a crash in a

complex group setup

- Floating point overflow in formula causes crash

- Extremely large value indicator in chart causes crash

- The formula reference help page link is broken in the script editor

- Disabled icons is completely gray, not hollow

- 'disablesafemode' is broken for Win95/98/ME for holiday list

- 2nd monitor to right will cause the drop down combo display away from the
TopGrid control (status: not done)

- eSignal CET (GMT + 2) data loading problem in eSignal, GMT + 3 not working
(status: not done)

- dataview column width save and restore corrected

- esignal news processing could affect data collection

- Excel object setvalue call will no longer attempt to rename newly recreate
workbook to specified name as various versions of excel have different
behaviour towards this workflow.

- Scroll to end problem for some chart spacing (status: fixed, not verified)

- Bar driven chart too many ticks - quote.com (status: under investigation)

- Quote window background color restore incorrect

- Further refinement of close to edge scrolling and setting of zero right
side bar permitted

- Set default in indicator setup window missed some values (status: not
done)

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com

----- Original Message -----
From: "Michael Mueller" <new_systematic@...>
To: <neoticker@yahoogroups.com>
Sent: Thursday, April 04, 2002 8:30 AM
Subject: Re: [neoticker] Progress on version 2.8


> What are the new features we can expect from 2.8 ?
>
> --- stnahc <stnahc@...> wrote:
>
> <HR>
> <html><body>
>
>
> <tt>
> <BR>
> We are about to freeze the new features for 2.8.<BR>
> <BR>
> Testing and documentation will be the next phrase.<BR>
> <BR>
> Will post a summary of new features in the coming
> week,<BR>
> for now, just an update of more new features,<BR>
> <BR>
> 1. candlestick hollow type <BR>
> 2. up down left right marker styles that point exactly
> to <BR>
>    specified price for use in indicators and
> trading system<BR>
> 3. day change marker<BR>
> 4. new transaction methods - linkid, barsnum<BR>
> 5. smarter scrolling of chart - arrow key controlled
> scroll<BR>
> 6. new meta style - region<BR>
> 7. a quick access panel for easy chart
> manipulation<BR>
> 8. internalize more indicators for speed<BR>
> <BR>
> Since I posted quite a few updates, thus the complete
> list will be<BR>
> pretty long :)<BR>
> <BR>
> <BR>
> Lawrence<BR>
> <BR>
> <BR>
> <BR>
> </tt>
>
> <br>
>
> <!-- |**|begin egp html banner|**| -->
>
> <table border=0 cellspacing=0 cellpadding=2>
> <tr bgcolor=#FFFFCC>
> <td align=center><font size="-1"
> color=#003399><b>Yahoo! Groups Sponsor</b></font></td>
> </tr>
> <tr bgcolor=#FFFFFF>
> <td align=center width=470><table border=0
> cellpadding=0 cellspacing=0><tr><td align=center><font
> face=arial size=-2>ADVERTISEMENT</font><br>
> <MAP NAME="Yahoo_300x250"><area shape="rect"
> coords="0,0,299,182"
>
href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=170
5632198:HM/A=1009646/R=0/*http://ad.doubleclick.net/clk;4022902;6990658;n?ht
tp://www.datek.com/ads/options/index.html?sc=M7Q7D9VA4R&pc=JANWBFTB"
> ALT=""><area shape="rect" coords="0,182,299,249"
>
"href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=17
05632198:HM/A=1009646/R=1/*http://ad.doubleclick.net/clk;4022913;6990658;p?h
ttp://optionsclearing.com/publications/risks/risks.jsp""
> ALT=""></MAP><IMG
>
SRC="http://us.a1.yimg.com/us.yimg.com/a/da/datek/300x250_loweroptions.gif"
> height="250" width="300" hspace="0" border="0"
> usemap="#Yahoo_300x250"></td></tr></table></td>
> </tr>
> <tr><td><img alt="" width=1 height=1
>
src="http://us.adserver.yahoo.com/l?M=219695.1919764.3411390.1269404/D=egrou
pmail/S=1705632198:HM/A=1009646/rand=527599413"></td></tr>
> </table>
>
> <!-- |**|end egp html banner|**| -->
>
>
> <br>
> <tt>
> To unsubscribe from this group, send an email to:<BR>
> neoticker-unsubscribe@yahoogroups.com<BR>
> <BR>
> </tt>
> <br>
>
> <br>
> <tt>Your use of Yahoo! Groups is subject to the <a
> href="http://docs.yahoo.com/info/terms/">Yahoo! Terms
> of Service</a>.</tt>
> </br>
>
> </body></html>
>
>
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.yahoo.com/
>
>
> To unsubscribe from this group, send an email to:
> neoticker-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#1530 From: Michael Mueller <new_systematic@...>
Date: Thu Apr 4, 2002 5:13 pm
Subject: Re: Progress on version 2.8
new_systematic
Send Email Send Email
 
impressive !
--- Louis Lin <lhclin@...> wrote:

<HR>
<html><body>


<tt>
Here is the more updated what's new for 2.8.  You
may notice<BR>
some features/bug fixes are marked "not
done".  We are still working<BR>
on those.<BR>
<BR>
Louis<BR>
<BR>
----------------------------------------------------------------------<BR>
New Features and Improvements<BR>
<BR>
DDE Link Manager<BR>
<BR>
- NeoTicker can now continuous update an external
application such as Excel<BR>
through DDE link. The DDE link manager provides the
user interface to set up<BR>
such DDE link<BR>
<BR>
Time Frame Manager<BR>
<BR>
- A centralize place to create time frames. You
specify information such as<BR>
trading hours, holidays, time or bar driven and
associate these information<BR>
with a specific name. Currently, only the DDE Link
Manager supports time<BR>
frames created by the Time Frame Manager. Time frame
service will be<BR>
available to other windows such as charts in upcoming
releases.<BR>
<BR>
Top List Function Window<BR>
<BR>
- A new type of function window.<BR>
<BR>
- For internet feed such as Quote.com, eSignal and
MyTrack, the top list<BR>
function window reports the top list sent out by the
Internet data provider.<BR>
Examples of top list are highest volume in NY, most
active in NY, etc.<BR>
<BR>
- For M3 users, NeoTicker creates customized top
list.<BR>
<BR>
Formula-driven Tick Filter<BR>
<BR>
- NeoTicker introduces a new type of tick filter.
Currently you can apply<BR>
individual tick filter to data series in charts.<BR>
<BR>
- The filter is user customizable using NeoTicker's
formula language. You<BR>
can decide whether to filter ticks based on condition
written using<BR>
NeoTicker's formula language. Furthermore, you can
modify tick value, volume<BR>
and time information using formulas.<BR>
<BR>
- Usages:<BR>
<BR>
- Filter out bad ticks<BR>
<BR>
- Modifying tick value<BR>
<BR>
- Modifying tick volume<BR>
<BR>
- Modifying time stamp (e.g. time warpping effect such
as diluating one hour<BR>
of trading into three hours).<BR>
<BR>
- A Tick Filter Manager is provided as the user
interface<BR>
<BR>
<BR>
Quote Window<BR>
<BR>
- You can now auto sort by timer<BR>
<BR>
- Sorting accuracy has been improved. Digits that are
outside of the<BR>
significant value of cell display are now used in
sorting<BR>
<BR>
- Quote window now supports formatting. Cells can be
formatted globally or<BR>
by column<BR>
<BR>
- Quote window column properties form can now switch
to another column by<BR>
<BR>
using the new switch column arrows button<BR>
<BR>
- Quote window now have tool buttons to help speed up
common operations.<BR>
This option can be easily turn off in main
window>visual tab.<BR>
<BR>
Time Chart<BR>
<BR>
- You can re-arrange the display order of data and
indicators. For example,<BR>
display one indicator underneath a data, another
indicator on top of the<BR>
data.<BR>
<BR>
- User panel in charts to let beginner users get to
work quickly (easily<BR>
turn off in main window>visual tab). The user panel
lets new user enter<BR>
symbol, indicators, adjust days to load and managing
panes without going<BR>
through the popup menus.<BR>
<BR>
- Intelligent new indicator placement. For a new
indicator, it will create<BR>
new pane if needed or find a pane that is suitable for
the indicator. This<BR>
option can be easily turn off in main window>visual
tab.<BR>
<BR>
- Pressing the arrow keys will scroll the chart one
bar at a time<BR>
<BR>
- New bar spacing adjustment (buttons, shift+ and
shift-) that adjusts chart<BR>
<BR>
zoom level at 1/20 of the regular zoom level<BR>
<BR>
- Custom days to load can now help you estimate the
number of days to load<BR>
based on a calendar day<BR>
<BR>
- Ctrl-F11 is now a short cut to capture chart image
to file<BR>
<BR>
- Chart grid line can be turn on for horizontal only,
vertical only, all, or<BR>
none<BR>
<BR>
- Show all and hide all for data, indicator, drawing
objects in chart<BR>
manager<BR>
<BR>
- Improved tolerance for drag and dropping data and
indicators between panes<BR>
<BR>
- You can pan a price axis directly by dragging the
price axis area. If you<BR>
hold the shift key, you can rescale the price axis.
This operation will<BR>
automatically turn off auto scaling.<BR>
<BR>
- Time chart now supports mouse wheel scrolling<BR>
<BR>
- Bar space is better preserved during refresh and
morning morning restart<BR>
<BR>
- Improved scroll to end behavior during morning
restart<BR>
<BR>
- Candle stick now supports hollow drawing type<BR>
<BR>
- Session break drawing is now supported<BR>
<BR>
- Data view now supports user defined colors and
background<BR>
<BR>
Indicators<BR>
<BR>
- New indicator meta style - region. A region of the
chart is colored<BR>
according to indicator value<BR>
<BR>
- Parameter entry UI has been updated for the
following indicators - fml,<BR>
fml2, vol formula, highlight, highlight bar, color
fml<BR>
<BR>
- Highlight fml can change position to any formula
result, not just high/low<BR>
<BR>
- Almost all indicators have been internalized for
performance. Indicators<BR>
that are expected to be modified by users are in
script form, e.g. trading<BR>
systems.<BR>
<BR>
- New and improved markers (up, down, left, right).
All markers line up to<BR>
exact price point<BR>
<BR>
- New indicators are introduced:<BR>
<BR>
- aroon up, aroon down and aroon oscillator<BR>
<BR>
- bar since<BR>
<BR>
- cumulate<BR>
<BR>
- gap, gap up, gap down<BR>
<BR>
- highest, highest bar<BR>
<BR>
- lowest, lowest bar<BR>
<BR>
- MACD modified<BR>
<BR>
- max, min<BR>
<BR>
- ADX rating<BR>
<BR>
- Adaptive moving average<BR>
<BR>
- zig zag<BR>
<BR>
- value when (status: unfinish)<BR>
<BR>
- variable length standard deviation (status:
unfinish)<BR>
<BR>
Formula Language<BR>
<BR>
- New internal formula functions - round, dayofweek,
frac<BR>
<BR>
- New datetime field access in formula language for
both quote window and<BR>
script formula - DT or DateTime<BR>
<BR>
Holiday Lists<BR>
<BR>
- Import/Export holiday lists<BR>
<BR>
Trading Systems<BR>
<BR>
- More transaction object methods - linkid barsnum<BR>
<BR>
Main Window<BR>
<BR>
- "Program>Internet Options" has been
renamed to "Internet Options for Web<BR>
EOD Data"<BR>
<BR>
- Better explaination for the large caption/regular
caption option in main<BR>
window<BR>
<BR>
Data Feed<BR>
<BR>
- In disk cache, there is a new option "Auto
Verify Cache". When a cache<BR>
file is missing, if this option is set, then data is
always request from the<BR>
server. If this option is not set, then data is not
request from the server<BR>
unless it is today's data. Turning off "Auto
Verify Cache" avoids attempts<BR>
to reload data in empty spots inside the cache and
speeds up loading. The<BR>
performance boost is especially noticable for long
term minute charts.<BR>
<BR>
- MyTrack support (beta). Currently support minute
time frames and above,<BR>
Level 2 and news. What is missing:<BR>
<BR>
- subminute time frames (seconds, ticks)<BR>
<BR>
- volume distribution<BR>
<BR>
- option chain<BR>
<BR>
<BR>
Indicator Writing<BR>
<BR>
- For datetime and formula parameters, you can now set
the field type to<BR>
such. When the indicator is in used, the user can use
the respective UI for<BR>
these parameters for easy data entry<BR>
<BR>
Misc<BR>
<BR>
- If you have customized colors in a color dialog, the
colors are saved and<BR>
will be available in all color dialogs. This lets you
easily create<BR>
consistent colors among different parts of the
program.<BR>
<BR>
- Ability to send symbol list directly between
function windows without<BR>
first saving the symbol list to a file<BR>
<BR>
- Many managers are moved from the Program menu to the
new Manager menu to<BR>
reduce the size of the Program menu<BR>
<BR>
Bugs Fixed<BR>
<BR>
- In quote window, create a new blank line, click on
the new blank line,<BR>
<BR>
sort ascending, then click on the first row will cause
a symbol to<BR>
<BR>
disappear<BR>
<BR>
- Keep pressing the clear button in ticker setup can
cause a crash in a<BR>
<BR>
complex group setup<BR>
<BR>
- Floating point overflow in formula causes crash<BR>
<BR>
- Extremely large value indicator in chart causes
crash<BR>
<BR>
- The formula reference help page link is broken in
the script editor<BR>
<BR>
- Disabled icons is completely gray, not hollow<BR>
<BR>
- 'disablesafemode' is broken for Win95/98/ME for
holiday list<BR>
<BR>
- 2nd monitor to right will cause the drop down combo
display away from the<BR>
TopGrid control (status: not done)<BR>
<BR>
- eSignal CET (GMT + 2) data loading problem in
eSignal, GMT + 3 not working<BR>
(status: not done)<BR>
<BR>
- dataview column width save and restore corrected<BR>
<BR>
- esignal news processing could affect data
collection<BR>
<BR>
- Excel object setvalue call will no longer attempt to
rename newly recreate<BR>
workbook to specified name as various versions of
excel have different<BR>
behaviour towards this workflow.<BR>
<BR>
- Scroll to end problem for some chart spacing
(status: fixed, not verified)<BR>
<BR>
- Bar driven chart too many ticks - quote.com (status:
under investigation)<BR>
<BR>
- Quote window background color restore incorrect<BR>
<BR>
- Further refinement of close to edge scrolling and
setting of zero right<BR>
side bar permitted<BR>
<BR>
- Set default in indicator setup window missed some
values (status: not<BR>
done)<BR>
<BR>
-----------------<BR>
Louis Lin<BR>
TickQuest Inc    www.tickquest.com<BR>
<BR>
----- Original Message -----<BR>
From: "Michael Mueller"
<new_systematic@...><BR>
To: <neoticker@yahoogroups.com><BR>
Sent: Thursday, April 04, 2002 8:30 AM<BR>
Subject: Re: [neoticker] Progress on version 2.8<BR>
<BR>
<BR>
> What are the new features we can expect from 2.8
?<BR>
><BR>
> --- stnahc <stnahc@...> wrote:<BR>
><BR>
> <HR><BR>
> <html><body><BR>
><BR>
><BR>
> <tt><BR>
> <BR><BR>
> We are about to freeze the new features for
2.8.<BR><BR>
> <BR><BR>
> Testing and documentation will be the next
phrase.<BR><BR>
> <BR><BR>
> Will post a summary of new features in the
coming<BR>
> week,<BR><BR>
> for now, just an update of more new
features,<BR><BR>
> <BR><BR>
> 1. candlestick hollow type <BR><BR>
> 2. up down left right marker styles that point
exactly<BR>
> to <BR><BR>
> &nbsp;&nbsp; specified price for use in
indicators and<BR>
> trading system<BR><BR>
> 3. day change marker<BR><BR>
> 4. new transaction methods - linkid,
barsnum<BR><BR>
> 5. smarter scrolling of chart - arrow key
controlled<BR>
> scroll<BR><BR>
> 6. new meta style - region<BR><BR>
> 7. a quick access panel for easy chart<BR>
> manipulation<BR><BR>
> 8. internalize more indicators for
speed<BR><BR>
> <BR><BR>
> Since I posted quite a few updates, thus the
complete<BR>
> list will be<BR><BR>
> pretty long :)<BR><BR>
> <BR><BR>
> <BR><BR>
> Lawrence<BR><BR>
> <BR><BR>
> <BR><BR>
> <BR><BR>
> </tt><BR>
><BR>
> <br><BR>
><BR>
> <!-- |**|begin egp html banner|**| --><BR>
><BR>
> <table border=0 cellspacing=0
cellpadding=2><BR>
> <tr bgcolor=#FFFFCC><BR>
> <td align=center><font
size="-1"<BR>
> color=#003399><b>Yahoo! Groups
Sponsor</b></font></td><BR>
> </tr><BR>
> <tr bgcolor=#FFFFFF><BR>
> <td align=center width=470><table
border=0<BR>
> cellpadding=0 cellspacing=0><tr><td
align=center><font<BR>
> face=arial
size=-2>ADVERTISEMENT</font><br><BR>
> <MAP
NAME="Yahoo_300x250"><area
shape="rect"<BR>
> coords="0,0,299,182"<BR>
><BR>
href="<a
href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=170">ht\
tp://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=170</a><BR>
5632198:HM/A=1009646/R=0/*<a
href="http://ad.doubleclick.net/clk;4022902;6990658;n?ht">http://ad.doubleclick.\
net/clk;4022902;6990658;n?ht</a><BR>
tp://www.datek.com/ads/options/index.html?sc=M7Q7D9VA4R&pc=JANWBFTB"<BR\
>
> ALT=""><area
shape="rect"
coords="0,182,299,249"<BR>
><BR>
"href="<a
href="http://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=17">htt\
p://rd.yahoo.com/M=219695.1919764.3411390.1269404/D=egroupweb/S=17</a><BR>
05632198:HM/A=1009646/R=1/*<a
href="http://ad.doubleclick.net/clk;4022913;6990658;p?h">http://ad.doubleclick.n\
et/clk;4022913;6990658;p?h</a><BR>
ttp://optionsclearing.com/publications/risks/risks.jsp""<BR>
> ALT=""></MAP><IMG<BR>
><BR>
SRC="<a
href="http://us.a1.yimg.com/us.yimg.com/a/da/datek/300x250_loweroptions.gif">htt\
p://us.a1.yimg.com/us.yimg.com/a/da/datek/300x250_loweroptions.gif</a>"<BR>
> height="250" width="300"
hspace="0" border="0"<BR>
>
usemap="#Yahoo_300x250"></td></tr></table></td\
><BR>
> </tr><BR>
> <tr><td><img alt=""
width=1 height=1<BR>
><BR>
src="<a
href="http://us.adserver.yahoo.com/l?M=219695.1919764.3411390.1269404/D=egrou">h\
ttp://us.adserver.yahoo.com/l?M=219695.1919764.3411390.1269404/D=egrou</a><BR>
pmail/S=1705632198:HM/A=1009646/rand=527599413"></td></tr><B\
R>
> </table><BR>
><BR>
> <!-- |**|end egp html banner|**| --><BR>
><BR>
><BR>
> <br><BR>
> <tt><BR>
> To unsubscribe from this group, send an email
to:<BR><BR>
>
neoticker-unsubscribe@yahoogroups.com<BR><BR>
> <BR><BR>
> </tt><BR>
> <br><BR>
><BR>
> <br><BR>
> <tt>Your use of Yahoo! Groups is subject to
the <a<BR>
> href="<a
href="http://docs.yahoo.com/info/terms/">http://docs.yahoo.com/info/terms/</a>&q\
uot;>Yahoo!
Terms<BR>
> of Service</a>.</tt><BR>
> </br><BR>
><BR>
> </body></html><BR>
><BR>
><BR>
><BR>
>
__________________________________________________<BR>
> Do You Yahoo!?<BR>
> Yahoo! Tax Center - online filing with
TurboTax<BR>
> <a
href="http://taxes.yahoo.com/">http://taxes.yahoo.com/</a><BR>
><BR>
><BR>
> To unsubscribe from this group, send an email
to:<BR>
> neoticker-unsubscribe@yahoogroups.com<BR>
><BR>
><BR>
><BR>
> Your use of Yahoo! Groups is subject to <a
href="http://docs.yahoo.com/info/terms/">http://docs.yahoo.com/info/terms/</a><B\
R>
><BR>
<BR>
</tt>

<br>

<!-- |**|begin egp html banner|**| -->

<table border=0 cellspacing=0 cellpadding=2>
<tr bgcolor=#FFFFCC>
<td align=center><font size="-1"
color=#003399><b>Yahoo! Groups Sponsor</b></font></td>
</tr>
<tr bgcolor=#FFFFFF>
<td align=center width=470><table border=0
cellpadding=0 cellspacing=0><tr><td align=center><font
face=arial size=-2>ADVERTISEMENT</font><br><a
href="http://rd.yahoo.com/M=215002.1954253.3462811.1261774/D=egroupweb/S=1705632\
198:HM/A=1000239/R=0/*http://ads.x10.com/?bHlhaG9vaG0xLmRhd=1017936682%3eM=21500\
2.1954253.3462811.1261774/D=egroupweb/S=1705632198:HM/A=1000239/R=1"
target=_top><img
src="http://ads.x10.com/?Z3lhaG9vaG0xLmRhd=1017936682%3eM=215002.1954253.3462811\
.1261774/D=egroupweb/S=1705632198:HM/A=1000239/R=2"
alt="" width="300" height="250"
border="0"></a></td></tr></table></td>
</tr>
<tr><td><img alt="" width=1 height=1
src="http://us.adserver.yahoo.com/l?M=215002.1954253.3462811.1261774/D=egroupmai\
l/S=1705632198:HM/A=1000239/rand=421332917"></td></tr>
</table>

<!-- |**|end egp html banner|**| -->


<br>
<tt>
To unsubscribe from this group, send an email to:<BR>
neoticker-unsubscribe@yahoogroups.com<BR>
<BR>
</tt>
<br>

<br>
<tt>Your use of Yahoo! Groups is subject to the <a
href="http://docs.yahoo.com/info/terms/">Yahoo! Terms
of Service</a>.</tt>
</br>

</body></html>



__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

#1531 From: Michael Mueller <new_systematic@...>
Date: Thu Apr 4, 2002 5:38 pm
Subject: Re: strange entry price in system monitor
new_systematic
Send Email Send Email
 
Now I now why these "strange" prices occur:

when the entry price is calculated NT takes the
entryprice * pricemultiple. Wouldn't it be better not
to calculate the net amount paid for the position and
leave the entryprice instead, as it appears on the
chart ?

Comments welcome.

Michael

__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

#1532 From: ARAHMAN5@...
Date: Thu Apr 4, 2002 1:56 pm
Subject: Re: Neoticker feed
ARAHMAN5@...
Send Email Send Email
 
Laurence,


Is it true that the 2.8 version of neoticker (not the M3 version) will be
able to use a  mytrack data feed and if so what is the cost of the real time
feed. Neoticker with mytrack is exactly what I am  looking for.


Kind regards,




Andrew

#1533 From: "kenyuen2002" <kenyuen2002@...>
Date: Thu Apr 4, 2002 7:29 pm
Subject: Re: Neoticker feed
kenyuen2002
Send Email Send Email
 
Yes, NeoTicker will have beta support for myTrack
in 2.8 verison.

The fee for the real time myTrack with NeoTick could
be as low as US$45/month . With US$19.98/month for the
basic real time plan + US$25.00/month for the SDK
activation to allow NeoTicker to run on myTrack.

Of course if you need to track different exchange you
need additional exchange fees. Please go to myTrack
website for more detail:

http://www.mytrack.com

Ken

--- In neoticker@y..., ARAHMAN5@A... wrote:
> Laurence,
>
>
> Is it true that the 2.8 version of neoticker (not the M3 version)
will be
> able to use a  mytrack data feed and if so what is the cost of the
real time
> feed. Neoticker with mytrack is exactly what I am  looking for.
>
>
> Kind regards,
>
>
>
>
> Andrew

#1534 From: ARAHMAN5@...
Date: Thu Apr 4, 2002 2:37 pm
Subject: Re: Re: Neoticker feed
ARAHMAN5@...
Send Email Send Email
 
Ken,


Thank you very much for that information. Its the response I have been
waiting for since last summer.

Kind regards,


Andrew

#1535 From: "Louis Lin" <lhclin@...>
Date: Thu Apr 4, 2002 8:48 pm
Subject: Re: Re: Neoticker feed
lhclin
Send Email Send Email
 
Just a note the myTrack support is beta.  There are several
missing pieces: no tick data, no second data, no option chains.

We expect to put these in eventually.

-----------------
Louis Lin
TickQuest Inc    www.tickquest.com


----- Original Message -----
From: <ARAHMAN5@...>
To: <neoticker@yahoogroups.com>
Sent: Thursday, April 04, 2002 2:37 PM
Subject: Re: [neoticker] Re: Neoticker feed


> Ken,
>
>
> Thank you very much for that information. Its the response I have been
> waiting for since last summer.
>
> Kind regards,
>
>
> Andrew
>
>
> To unsubscribe from this group, send an email to:
> neoticker-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

Messages 1506 - 1535 of 14756   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help