One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
import os | |
from decimal import Decimal | |
from typing import Dict, List, Set, Optional | |
from pydantic import Field | |
from hummingbot.client.config.config_data_types import ClientFieldData | |
from hummingbot.connector.connector_base import ConnectorBase, TradeType | |
from hummingbot.core.data_type.common import OrderType, PriceType | |
from hummingbot.data_feed.candles_feed.data_types import CandlesConfig |
from typing import Dict, List, Optional | |
import networkx as nx | |
def main(): | |
stages = { | |
"Lint": [], | |
"Test": [], | |
"Coverage": ["Test"], | |
"Docs": ["Coverage", "Lint"], |
function DownloadFilesFromRepo { | |
Param( | |
[string]$Owner, | |
[string]$Repository, | |
[string]$Path, | |
[string]$DestinationPath | |
) | |
$baseUri = "https://api.github.com/" | |
$args = "repos/$Owner/$Repository/contents/$Path" |
function DownloadFilesFromRepo { | |
<# | |
.SYNOPSIS | |
This function retrieves the specified repository on GitHub to a local directory with authentication. | |
.DESCRIPTION | |
This function retrieves the specified repository on GitHub to a local directory with authentication, being a single file, a complete folder, or the entire repository. | |
.PARAMETER User |
// ///////////////////////////////////////////////// | |
// this file contains all the classes related to a | |
// market. | |
// ///////////////////////////////////////////////// | |
var log4js = require('log4js'); | |
var logger = log4js.getLogger(require('path').basename(__filename, '.js')); | |
require('es6-collections'); | |
var _ = require('underscore'); | |
/** |