using pbzip2 for parallelity and make the frontend compatible with old TDA and new Schwab symbol names for options (different separator)

This commit is contained in:
2024-05-31 09:17:53 -05:00
parent 723f976d50
commit ba4df998fb
3 changed files with 37 additions and 1 deletions

View File

@@ -81,7 +81,7 @@ let createOrderFrame=()=>{
}
let splitOptionDetails=(input)=>{
let symbolRest=input.split("_");
let symbolRest=input.split(/ +|_/);
let symbol=symbolRest[0];
let putCall=(symbolRest[1].indexOf("P")>-1)?"P":"C";