Jump to content

UltraNIX

Members
  • Posts

    7
  • Joined

  • Last visited

UltraNIX's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. I need your advice on table relationships setup. I am trying to create stock trading simulator, and I started with STOCK table, where all the stocks are placed. then I created DATA table, where all the stock data is stored (date, symbol, open, high, low, close prices and volume). and those tables are related: STOCK::symbol = DATA::symbol. But as for simulator, I need 3 additional tables: - ACCOUNTS [one account can have many orders] - ORDERS [one order can have many line items] - LINE_ITEMS So, basically, you start with account (let's say, record is 'Virtual account'), you then enter order (let's say, order is 'Covered call'), and that order in line_items table has 2 records (one for stock position, one for option). At first, I thought to relate ACCOUNTS to ORDERS and then ORDERS to LINE_ITEMS, but I need to 'squeeze in' STOCKS somewhere, because some information in Orders (and consequently, in LINE_ITEMS) should be retrieved from STOCK and it's related table DATA) To my way of thinking, ACCOUNTS is the primary/parent table, and I'm quite messed up whether to link STOCK to ACCOUNTS or to ORDERS or construct relationships in any other way. Could you please help me?
  2. Thank you for your input. It's not exactly what I was searching for, but as others already pointed out - there's no way to solve this problem with REplace field contents. So I will have to go out with Set Field by name and Loop through all records.
  3. It's just a typo. In a script those values match.
  4. I need to replace field contents in all of the 14000+ records in the table, so looping through it all with set field would be painful.
  5. I want to create a batch testing script and test 300+ fields. So, in this example, I will be testing how the data in field calc::avg_vol is performing, so I will try to replace field contents from field calc::avg_vol to calc::temp_field. I don't want to write a Replace Field Contents script for each of 300+ fields. Instead, I came across with such an idea: Put field names into separate field and then put it to a variable, like this: 1) Go to Layout (Fields) 2) Set variable ($Name; fields::name) (e.g. calc::avg_vol) 3) Go to Layout (calc) 4) Replace Field Contents (calc::temp_field; $Name) But the problem here is that it treats "calc::avg_vol" like a text instead of putting actual data from calc::avg_vol, it just prints "calc::avg_vol" text. So how could I get the contents of calc::avg_vol to calc::temp_field? (I want this as scripted or as automatic as possible, because any manual intervention slows the whole process down)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.