PureBytes Links
Trading Reference Links
|
Thanks
D, some good ideas...we'll get it going :-)
<FONT face=Arial color=#0000ff
size=2>
I am
playing with the idea of using the SelectedValue() function to implement mouse
click value selection. It will involves some programming but should be
doable. The idea is to create a separate pane for data entry. This is a
primative approach but would/could later be translated to automated
trading.
There
are many ways to do this but I imagine a pane where at the left we display
10 full-height colored bars (perhaps labeled 0-9) occupying each 5% of the
visible bars. These would be my parameter select bars: i would click on one of
them and my code would know which parameter I want to change. The right
half of the pane would contain a linearly incremented chart with the range of
values i need, say 10-50. To enter a variable i would Click the parameter select
followed by a Click value select in the right half of the pane. All this would
require table maintenance on disk...<SPAN
class=031274618-10032004>Oh well, one day
when i have more time i might play with this...
<FONT face=Arial color=#0000ff
size=2>
Of
course i know that it would be a snap for you to set up a Click
sensitive VB window (like a hot map) for parameter entry that would write
to disk where my code would find it when you end the parameter-change with a
Refresh() but, regretably i don't have your programming skills. If ever you are
looking for a project, let me know ;-)
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>herman.
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Tahoma
size=2>-----Original Message-----From: dingo
[mailto:dingo@xxxxxxxxxxxx]Sent: Wednesday, March 10, 2004 1:29
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker]
How to input user data into AB-RT
<FONT face=Arial
color=#0000ff size=2>Ooops!
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>forget the part:
<FONT face=Arial
color=#0000ff size=2>
enablescript;
use one of the script lang's to delete
the file
<FONT face=Arial
color=#0000ff size=2>
<SPAN
class=694112818-10032004>I keep
forgetting that AB resets everything each time it goes thru the
code.
<SPAN
class=694112818-10032004><FONT face=Arial color=#0000ff
size=2>
<SPAN
class=694112818-10032004><FONT face=Arial color=#0000ff
size=2>d
From: dingo [mailto:dingo@xxxxxxxxxxxx]
Sent: Wednesday, March 10, 2004 12:59 PMTo:
amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker] How to input
user data into AB-RT
<FONT face=Arial
color=#0000ff size=2>Here's a few more ideas:
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>1. Put all of your code that assigns the params
into an #include file and have that up in your text editor. When you decide
to make a change alter the code in the editor and save it. Be sure to
use the Pragma nocache line in your formula.
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>2. Similar to above have the text for a csv in your
text editor but have it 1 line per ticker/param with the comma at the
end. Make the necessary changes and have a macro that will collapse
the lines into one csv line and save it to a file. Use AB's file
File I/O functions:
<FONT face=Arial
color=#0000ff size=2>
<FONT face=Arial
color=#0000ff size=2>filepresent = fopen(filepath);
<FONT face=Arial
color=#0000ff size=2>if (filePresent )
{
use the string
functions
enablescript;
use one of the script lang's to delete
the file
<FONT face=Arial
color=#0000ff size=2>
}
3. rather than use
the text editor to create the above files write you a little prog ( I know
you can do this) to create the files in either of the 2 methods above.
This should save you the most typing since that seems to be the major
criteria <bseg>.
<SPAN
class=835205117-10032004>d
From: Herman van den Bergen
[mailto:psytek@xxxxxxxx] Sent: Tuesday, March 09, 2004 9:41
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE:
[amibroker] How to input user data into AB-RT
<FONT face=Arial color=#0000ff
size=2>Thanks D and Graham,
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>the way i understand D's method it that would be too much typing, i
would like to enter the ten parameters in about a minute or so. And
Graham's method requires a set of predefined parameters. The problem has
to do with modifying stops and limits on the fly while working
with RT data. <FONT
face=Arial color=#0000ff size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>thanks for the feedback...
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>herman
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Tahoma
size=2>-----Original Message-----From: WALEDINGO
[mailto:dingo@xxxxxxxxxxxx]Sent: Tuesday, March 09, 2004 8:27
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE:
[amibroker] How to input user data into AB-RT
<SPAN
class=616011801-10032004>Feed your params in as a csv string via the
param() but make the string look like:
<SPAN
class=616011801-10032004>
<SPAN
class=616011801-10032004>ticker1 = new_param1, ticker2 = new_Param2...
etc.
<SPAN
class=616011801-10032004>
<SPAN
class=616011801-10032004>Then you can parse the above using the
string commands to get them down to where you can use if statements to
assign the params to the correct ticker.
<SPAN
class=616011801-10032004>
<SPAN
class=616011801-10032004>d
<SPAN
class=616011801-10032004>
<SPAN
class=616011801-10032004>
From: Herman van den Bergen
[mailto:psytek@xxxxxxxx] Sent: Tuesday, March 09, 2004 8:03
PMTo: AmiBrokerSubject: [amibroker] How to input
user data into AB-RT
I sure
could use some help with this one :-)
<SPAN
class=484135100-10032004>
Assume I
am trading a portfolio of ten out of 100 stocks, and I need,
during the day, to enter custom parameters for the ten stocks traded,
not for the other 90. I could use ten Param() variables to enter the
ten parameters, however the ten stocks change each day, so it seems
the only way is to use 100 Param()s... right? Of course this is
impractical because I would have to scroll through all 100 Param
variables to find the stock i need. I need to enter/change these
parameters quickly in response to changing RT
data.
<SPAN
class=484135100-10032004>
I tried
iffing out Param() buy=t that doesn't work. I tried dynamically
changing the Name string to force the used stocks to the top in
the window but that doesn't work either. <FONT
face=Arial size=2>I thought of entering
ten comma separated parameters in a single Param() window and separate
those in code....but this makes it difficult to change a single
variable.
<SPAN
class=484135100-10032004>
Any ideas
anyone?
<SPAN
class=484135100-10032004>
<SPAN
class=484135100-10032004>TIA
<SPAN
class=484135100-10032004>herman.
<SPAN
class=484135100-10032004>
<SPAN
class=484135100-10032004>
<SPAN
class=484135100-10032004>
<SPAN
class=484135100-10032004> Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web
page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend
SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web
page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Send BUG REPORTS to
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page:
<A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend
SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page:
<A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Send BUG REPORTS to
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|