Change order

This commit is contained in:
Sik Yoon 2024-05-20 03:37:32 +09:00
parent 1822e82bb0
commit 5bc08eaf10
2 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ const STRATEGIST_NUMBER: u32 = 16;
pub async fn initialization() { pub async fn initialization() {
println!("- - - initialization start - - -"); println!("- - - initialization start - - -");
// initialize_webdriver().await; // initialize_webdriver().await;
future_setup().await;
initialize_database().await; initialize_database().await;
future_setup().await;
println!("- - - initialization done - - -"); println!("- - - initialization done - - -");
} }

View File

@ -2,7 +2,7 @@ use crate::value_estimation_team::indicators::wiliams_percent_r;
use super::{ use super::{
adx, dec, decimal_add, decimal_div, decimal_mul, decimal_sub, dema, duplicate_filter, ema, adx, dec, decimal_add, decimal_div, decimal_mul, decimal_sub, dema, duplicate_filter, ema,
ema_macd, exists_record, get_current_price, get_server_epoch, heatmap_volume, ema_macd, exists_record, get_server_epoch, heatmap_volume,
insert_pre_suggested_coins, limit_order_sell, remove_keys, rsi, select_filled_buy_orders, insert_pre_suggested_coins, limit_order_sell, remove_keys, rsi, select_filled_buy_orders,
stoch_rsi, supertrend, tema, try_join_all, update_record3, wiliams_percent_r, AdxData, AllData, stoch_rsi, supertrend, tema, try_join_all, update_record3, wiliams_percent_r, AdxData, AllData,
Arc, BollingerBandData, Client, ClientBuilder, Decimal, DemaData, EmaData, ExchangeInfo, Arc, BollingerBandData, Client, ClientBuilder, Decimal, DemaData, EmaData, ExchangeInfo,