Github: https://github.com/thinkful-ei27/petful-client-john-tyler
Live Link: https://mighty-reaches-16597.herokuapp.com/
Github: https://github.com/thinkful-ei27/petful-server-john-tyler
| import random | |
| import time | |
| from decimal import Decimal | |
| from typing import Dict, List, Set, Tuple | |
| import numpy as np | |
| from pydantic import Field | |
| from controllers.directional_trading.ema_crossover_v1 import EMACrossoverController, EMACrossoverControllerConfig | |
| from hummingbot.client.config.config_data_types import ClientFieldData |
| { | |
| "dataSource": { | |
| "type": "api", | |
| "config": { | |
| "url": "<bloxy url>" | |
| } | |
| }, | |
| "exportTo": { | |
| "type": "google sheet", | |
| "params": { |
| name: Working with dates | |
| description: >- | |
| Shows how to work with dates by using the Moment JavaScript library with the | |
| Moment-MSDate plug-in. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: > | |
| declare var moment: any; |
| 'use strict'; | |
| const express = require('express'); | |
| // you'll need to use `queryString` in your `gateKeeper` middleware function | |
| const queryString = require('query-string'); | |
| const app = express(); | |
| // For this challenge, we're hard coding a list of users, because |