-
I plan to take a look at hooking my scripting tool with the new format this weekend since we should be having any soccer practices or games. Got some definitions for COMP?.
2009-09-03 11:27:06 UTC in Qtstalker
-
Steve,
This is great! From looking at the sample of my language so far you know this will allow it to hook up easily with Qts. Once I see your examples I'll make changes to what I expect on STDIN ad what I send on STDOUT.
-Paul.
2009-09-01 13:26:35 UTC in Qtstalker
-
VI and command line for me also.
2009-07-09 11:39:54 UTC in Qtstalker
-
Harri said might be able to use QDBus with plain Qt apps like KDE apps use KUniqueApplication to tell whether this is session 0, 1,2,3,....
2009-07-03 04:07:15 UTC in Qtstalker
-
Multiple windows would be a great addition! I'm all for it. I sent a note to one of the original KDE guys to see if he had any ideas on how to handle this also.
2009-07-02 14:38:07 UTC in Qtstalker
-
a = barcount(C > 35 and V > 100000);
what I was thinking was "a" would be the index of when this last occurred. So, if occured on the 150 data observation it would be 150.
2009-06-29 18:43:31 UTC in Qtstalker
-
for counter type function what about something like
a = barcount(C > 35 and V > 100000);
where a would be the number of bar/periods since Close was over 35 and Volume was over 100000.
2009-06-26 14:34:00 UTC in Qtstalker
-
new CUS is shaping up to look like this
topv=Prompt("overbought level",1,100,70);
botv=Prompt("oversold level",1,100,30);
tp=Prompt("RSI Time Periods",1,100,14);
clamp=Prompt("use clamping 1=Yes/0=No",0,1,0);
cper=Prompt("clamping percent",5,50,10);
change=TA_ROC(C,1);
Z=TA_Wilders(If(change>0,change,0),tp);...
2009-06-19 18:28:43 UTC in Qtstalker
-
I guess it can be anything. Right now it just prints to STDOUT. Since we''re using lexx/yacc for grammer files our code is C based. So something will have to be worked out there. I'm thinking I'll want to be able todo a ifdef to signify linking with qts or as a stand alone program. Makes it easier for Mike to add grammer and for me to test. Some of the ifdefs will be for things like Input...
2009-06-12 22:28:43 UTC in Qtstalker
-
Steve,
Will your DB code be able to handle datetime stamps? and if so what will they look like. In Informix I used to them looking like "2009-06-12 09:34:00.00" or to what ever granularity you want. In scripting trying to implement month(), year(), dayofmonth(), dayofweek(), hour(), minute()...
Paul.
2009-06-12 14:39:00 UTC in Qtstalker