Say I have a function:
quotes:{[ticker;x;y]
output: ....
}
How can I use this function iterate over a list in another function:
combiner:{[tickerList;x;y]
output: uj quotes[ticker1;x;y], quotes[ticker2;x;y], etc.
}
Say I have a function:
quotes:{[ticker;x;y]
output: ....
}
How can I use this function iterate over a list in another function:
combiner:{[tickerList;x;y]
output: uj quotes[ticker1;x;y], quotes[ticker2;x;y], etc.
}
Copyright © 2021 Jogjafile Inc.
You can combine
ujwith over/to do this:In you case this may look like:
If the quotes function always outputs tables with the same schema you can use
razeinstead:razeandujare both join functions and an implementation of,butrazerequires the schema of all tables to be the same.