Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mkosir committed Jun 5, 2023
1 parent 468ae56 commit 1e89660
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
20 changes: 10 additions & 10 deletions binance-datasets/downloadData/DOWNLOAD_SYMBOL_PAIRS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ export const DOWNLOAD_SYMBOL_PAIRS: DownloadSymbolPairs = [
// },
],
},
// {
// symbolPair: 'MATICBUSD',
// dataTimeSpans: [
// {
// year: '2022',
// months: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11'],
// // months: ['06'],
// },
// ],
// },
{
symbolPair: 'MATICBUSD',
dataTimeSpans: [
{
year: '2023',
months: ['04'],
// months: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11'],
},
],
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ type DownloadSymbolPair_AVAXBUSD = {
type DownloadSymbolPair_MATICBUSD = {
symbolPair: Extract<SymbolPair, 'MATICBUSD'>;
dataTimeSpans: ReadonlyArray<
| {
year: '2023';
months: ReadonlyArray<'01' | '02' | '03' | '04'>;
}
| {
year: '2022';
months: ReadonlyArray<'01' | '02' | '03' | '04' | '05' | '06' | '07' | '08' | '09' | '10' | '11'>;
Expand Down
2 changes: 1 addition & 1 deletion src/bot/common/types/SymbolPair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SymbolCoin } from './SymbolCoin';

export const SYMBOL_PAIRS = [
// Available also on paper testing - Start
'BTCBUSD',
// 'BTCBUSD',
// 'ETHBUSD',
// Available also on paper testing - End
// 'SOLBUSD',
Expand Down

0 comments on commit 1e89660

Please sign in to comment.