Is it possible to use AmiQuote to load data based on data in a CSV? In other words, I have a bunch of CSV files that look like:
File 1:
,Size,EntryBar,ExitBar,EntryPrice,ExitPrice,PnL,ReturnPct,EntryTime,ExitTime,StopLoss,TakeProfit,Duration,strategy_name,strategy_rule_set,ticker
0,1000,39,40,1.0,0.99,-10.000000000000009,-0.010000000000000009,1994-06-01,1994-06-02,0.74,0.0,1 days,WedgePop_EMA20_Trailing_StopLoss_Up_to_10B_Cap_,Exit_After_3_Days_Or_10EMA,CPSH
1,1135,56,57,0.88,0.87,-11.35000000000001,-0.011363636363636354,1994-06-24,1994-06-27,0.8,0.0,3 days,WedgePop_EMA20_Trailing_StopLoss_Up_to_10B_Cap_,Exit_After_3_Days_Or_10EMA,CPSH
File 2:
,Size,EntryBar,ExitBar,EntryPrice,ExitPrice,PnL,ReturnPct,EntryTime,ExitTime,StopLoss,TakeProfit,Duration,strategy_name,strategy_rule_set,ticker
0,43,22,25,22.75,23.38,27.089999999999957,0.027692307692307683,1993-08-23,1993-08-26,22.11,0.0,3 days,WedgePop_EMA20_Trailing_StopLoss_Up_to_10B_Cap_,Exit_After_3_Days_Or_10EMA,CPT
1,38,72,73,26.12,26.0,-4.560000000000038,-0.004594180704441064,1993-11-02,1993-11-03,25.869999999999997,0.0,1 days,WedgePop_EMA20_Trailing_StopLoss_Up_to_10B_Cap_,Exit_After_3_Days_Or_10EMA,CPT
I'd like to be able to iterate through the files within a given directory and load the 1-minute data for each ticker + date combination. Even better would be to combine ranges of dates, but I'd settle for the first step.
Thank you!