SYMBOL INDEX (58 symbols across 7 files) FILE: core/botCore.py function override_url_for (line 42) | def override_url_for(): function dated_url_for (line 46) | def dated_url_for(endpoint, **values): function control_panel (line 59) | def control_panel(): function update_trader (line 79) | def update_trader(): function get_trader_charting (line 105) | def get_trader_charting(): function get_trader_indicators (line 126) | def get_trader_indicators(): function get_trader_candles (line 145) | def get_trader_candles(): function test_rest_call (line 164) | def test_rest_call(): function shorten_indicators (line 169) | def shorten_indicators(indicators, end_time): function api_error_check (line 183) | def api_error_check(data): function web_updater (line 193) | def web_updater(): class BotCore (line 223) | class BotCore(): method __init__ (line 225) | def __init__(self, settings, logs_dir, cache_dir): method start (line 261) | def start(self): method _trader_manager (line 408) | def _trader_manager(self): method _bnb_manager (line 414) | def _bnb_manager(self): method _file_manager (line 433) | def _file_manager(self): method _connection_manager (line 445) | def _connection_manager(self): method get_trader_data (line 473) | def get_trader_data(self): method get_trader_indicators (line 479) | def get_trader_indicators(self, market): method get_trader_candles (line 490) | def get_trader_candles(self, market): function start (line 498) | def start(settings, logs_dir, cache_dir): FILE: core/static/js/charts.js function initial_build (line 53) | function initial_build(target_element, charting_data) { function build_candle_data (line 87) | function build_candle_data(candle_data) { function build_timeseries (line 112) | function build_timeseries(ind_obj) { function build_basic_indicator (line 142) | function build_basic_indicator(chart_obj, ind_obj, chart_type, line_name... function populate_chart (line 192) | function populate_chart(indicator_data) { FILE: core/static/js/script.js function update_trader_results (line 29) | function update_trader_results(data) { function hide_section (line 119) | function hide_section(e, section_id){ function start_trader (line 134) | function start_trader(e, market_pair){ function pause_trader (line 140) | function pause_trader(e, market_pair){ function build_chart (line 146) | function build_chart(market_pair, element){ function rest_api (line 151) | function rest_api(method, endpoint, data=null, target_function=null, tar... FILE: core/trader.py class BaseTrader (line 56) | class BaseTrader(object): method __init__ (line 57) | def __init__(self, quote_asset, base_asset, rest_api, socket_api=None,... method setup_initial_values (line 105) | def setup_initial_values(self, trading_type, run_type, filters): method start (line 130) | def start(self, MAC, wallet_pair, open_orders=None): method stop (line 157) | def stop(self): method _main (line 169) | def _main(self): method _order_status_manager (line 268) | def _order_status_manager(self, market_type, cp, socket_buffer_symbol): method _check_active_trade (line 357) | def _check_active_trade(self, side, market_type, cp, order_seen): method _trade_manager (line 412) | def _trade_manager(self, market_type, cp, indicators, candles): method _place_order (line 547) | def _place_order(self, market_type, cp, order): method _cancel_order (line 622) | def _cancel_order(self, order_id, order_type): method get_trader_data (line 635) | def get_trader_data(self): method strip_timestamps (line 652) | def strip_timestamps(self, indicators): method update_wallets (line 667) | def update_wallets(self, socket_buffer_global): FILE: patterns.py class pattern_W (line 44) | class pattern_W: method __init__ (line 45) | def __init__(self): method check_condition (line 51) | def check_condition(self, point_set): FILE: run.py function settings_reader (line 51) | def settings_reader(): FILE: trader_configuration.py function technical_indicators (line 8) | def technical_indicators(candles): function other_conditions (line 68) | def other_conditions(custom_conditional_data, trade_information, previou... function long_exit_conditions (line 80) | def long_exit_conditions(custom_conditional_data, trade_information, ind... function long_entry_conditions (line 103) | def long_entry_conditions(custom_conditional_data, trade_information, in... function short_exit_conditions (line 125) | def short_exit_conditions(custom_conditional_data, trade_information, in... function short_entry_conditions (line 148) | def short_entry_conditions(custom_conditional_data, trade_information, i... function basic_stoploss_setup (line 170) | def basic_stoploss_setup(trade_information, price, stop_price, position_...