This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run this script as: node historical.js <api-key> <api-secret> <request-token> | |
// Expected it should return correct values for close and volume for the duration, however it does not | |
const api_key = process.argv[2]; | |
const api_secret = process.argv[3]; | |
const request_token = process.argv[4]; | |
var KiteConnect = require("kiteconnect").KiteConnect; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.5" | |
# Starts local dynamodb server and ui service to access it | |
# Variables | |
# DYNAMODB_SERVER_PORT (default 5000) | |
# DYNAMODB_UI_PORT (default 5001) | |
services: | |
dynamo: | |
container_name: local-dynamodb | |
image: amazon/dynamodb-local |