|
Raju Harchandani
2010-09-28 13:02:07
|
|
Hi This is one area which confuses me is the trading objects that i download....I just cannot locate them to load them into the software. I am sure it is my problem ...do users out there have similar complaints
Raju
|
|
|
|
QuantShare
2010-09-28 13:31:24
0
|
|
The trading objects you download from QuantShare are shortcuts. After, you download a shortcut, you must double-click on it. QuantShare will then open and download the real trading object.
|
|
|
|
Raju Harchandani
2010-09-28 20:34:58
0
|
|
Yes true but where are these saved on my comp
|
|
|
|
QuantShare
2010-09-29 05:07:57
0
|
|
Shortcuts are saved in the same folder as any other file you download from Internet.
Trading objects are saved In the folder "Database" under the QuantShare folder. Trading objects are automatically loaded on application startup so there is no need to access this folder.
|
|
|
|
Hemmie
2010-10-31 02:52:58
0
|
|
Hi,
How do I access these objects and see the script so that I can modify those objects, possibly share a new version of the object.
Thanks
|
|
|
|
QuantShare
2010-11-01 06:44:37
0
|
|
It depends on the trading item.
For an indicator, select Tools -> Custom Functions then select an item.
For a downloader, select Download -> Download Manager, select an item then click on "Update".
|
|
|
|
Hemmie
2010-11-09 21:50:17
0
|
|
Thanks I was able to locate update for Download items and script based trading objects.
I recently downloaded symbol updater, but could not update it so that cusip is saved on ~Name2 or ~Name3. Currently it is updating cusip on ~Name1 location and overwriting all Yahoo based symbols. How do I update it.
|
|
|
|
QuantShare
2010-11-10 04:15:32
0
|
|
What symbol updater are you referring to?
|
|
|
|
|
QuantShare
2010-11-16 12:56:44
0
|
|
This can be done using a script. Let me know if you are interested and I will write the script for you.
|
|
|
|
Hemmie
2010-11-16 21:15:48
0
|
|
Would be great if you don't mind, currently I can't even locate the script for this trading object, I do not see any update button as I see in the download manger but this one being a symbol object can't seem to locate.
Thanks
|
|
|
|
QuantShare
2010-11-17 04:57:31
0
|
|
Here is what you should do:
- Create a new account and add the US Stock symbols - CUSIP symbols to this account.
- Select Tools -> Script Editor and create a new script
- Type the following script, then execute it (Execute button) (It will save symbols and CUSIP data in memory)
Symbol[] symbols = Symbols.GetSymbols();
for(int i=0;i < symbols.Length;i++)
{
Symbol sym = symbols[i];
Global.SetVariable("-" + sym.Name, sym.Name1);
}
- Open your previous account
- Execute the following script: (It will save CUSIP data in Name2)
Symbol[] symbols = Symbols.GetSymbols();
for(int i=0;i < symbols.Length;i++)
{
Symbol sym = symbols[i];
object obj = Global.GetVariable("-" + sym.Name);
if(obj != null)
{
sym.Name2 = obj.ToString();
}
}
(by Patrick Fonce,
uploaded several months ago)
No notes
|
|
|
|
|