├── .gitattributes ├── .gitignore ├── MQL4CSharp.sln ├── MQL4CSharp ├── Base │ ├── Common │ │ ├── BaseFilter.cs │ │ ├── BaseRiskProfile.cs │ │ ├── BaseSignal.cs │ │ ├── BaseStopLoss.cs │ │ ├── BaseStrategy.cs │ │ ├── BaseTakeProfit.cs │ │ ├── SignalInfo.cs │ │ ├── SignalInfoKey.cs │ │ ├── SignalResult.cs │ │ └── StrategyMetaData.cs │ ├── Enums │ │ ├── ALIGN_MODE.cs │ │ ├── APPLIED_PRICE.cs │ │ ├── Color.cs │ │ ├── Direction.cs │ │ ├── Error.cs │ │ ├── MARKET_INFO.cs │ │ ├── MA_METHOD.cs │ │ ├── MQLCommand.cs │ │ ├── OBJECT_PROPERTY.cs │ │ ├── OBJECT_TYPE.cs │ │ ├── SELECTION_POOL.cs │ │ ├── SELECTION_TYPE.cs │ │ ├── SIGNAL_BASE_DOUBLE.cs │ │ ├── SIGNAL_BASE_INTEGER.cs │ │ ├── SIGNAL_BASE_STRING.cs │ │ ├── SIGNAL_INFO_DOUBLE.cs │ │ ├── SIGNAL_INFO_INTEGER.cs │ │ ├── SIGNAL_INFO_STRING.cs │ │ ├── TRADE_OPERATION.cs │ │ └── TimeFrame.cs │ ├── Exceptions │ │ └── MQLExceptions.cs │ ├── MQL │ │ ├── DLLObjectWrapper.cs │ │ ├── MQLBase.cs │ │ ├── MQLCommandManager.cs │ │ ├── MQLCommandRequest.cs │ │ ├── MQLExpert.cs │ │ └── MQLThreadPool.cs │ └── REST │ │ └── MQLRESTResource.cs ├── Logging.cs ├── MQL4CSharp.csproj ├── MQL4CSharp.nuspec ├── Mql │ ├── mc_funcs.mqh │ ├── mc_helpers.mqh │ ├── mc_returns.mqh │ └── mql4csharp.mq4 ├── Properties │ └── AssemblyInfo.cs ├── UserDefined │ ├── Filter │ │ ├── NewsCloseOutFilter.cs │ │ ├── NewsInputFilter.cs │ │ └── TimeOfDayFilter.cs │ ├── Input │ │ ├── CSVOrder.cs │ │ ├── CSVOrders.cs │ │ ├── NewsReport.cs │ │ └── NewsReports.cs │ ├── RiskProfile │ │ ├── FixedDollarRiskProfile.cs │ │ ├── FixedLotsRiskProfile.cs │ │ └── PercentRiskProfile.cs │ ├── Signal │ │ └── MACross.cs │ ├── StopLoss │ │ ├── ATRStopLoss.cs │ │ ├── BreakEvenStopLoss.cs │ │ ├── SRStopLoss.cs │ │ └── TrailingStopLoss.cs │ ├── Strategy │ │ ├── CSVOrderPlacer.cs │ │ ├── MQLRESTStrategy.cs │ │ └── MaCrossStrategy.cs │ └── TakeProfit │ │ └── FixedPipTakeProfit.cs ├── Util │ ├── DateUtil.cs │ └── JSONHelper.cs ├── log4net.config └── packages.config ├── README.md └── docs ├── html ├── Thumbs.db ├── _a_l_i_g_n___m_o_d_e_8cs.html ├── _a_p_p_l_i_e_d___p_r_i_c_e_8cs.html ├── _a_t_r_stop_loss_8cs.html ├── _assembly_info_8cs.html ├── _base_filter_8cs.html ├── _base_risk_profile_8cs.html ├── _base_signal_8cs.html ├── _base_stop_loss_8cs.html ├── _base_strategy_8cs.html ├── _base_take_profit_8cs.html ├── _break_even_stop_loss_8cs.html ├── _c_o_l_o_r_8cs.html ├── _c_s_v_order_8cs.html ├── _c_s_v_orders_8cs.html ├── _d_l_l_object_wrapper_8cs.html ├── _d_t_f_l_8cs.html ├── _date_util_8cs.html ├── _direction_8cs.html ├── _error_8cs.html ├── _fixed_lots_risk_profile_8cs.html ├── _fixed_pip_take_profit_8cs.html ├── _j_s_o_n_helper_8cs.html ├── _logging_8cs.html ├── _m_a___m_e_t_h_o_d_8cs.html ├── _m_a_cross_8cs.html ├── _m_a_r_k_e_t___i_n_f_o_8cs.html ├── _m_q_l_base_8cs.html ├── _m_q_l_command_8cs.html ├── _m_q_l_command_manager_8cs.html ├── _m_q_l_command_request_8cs.html ├── _m_q_l_exceptions_8cs.html ├── _m_q_l_expert_8cs.html ├── _m_q_l_r_e_s_t_resource_8cs.html ├── _m_q_l_r_e_s_t_strategy_8cs.html ├── _m_q_l_thread_pool_8cs.html ├── _ma_cross_strategy_8cs.html ├── _manipulation_point_8cs.html ├── _manipulation_points_8cs.html ├── _news_close_out_filter_8cs.html ├── _news_input_filter_8cs.html ├── _news_report_8cs.html ├── _news_reports_8cs.html ├── _o_b_j_e_c_t___p_r_o_p_e_r_t_y_8cs.html ├── _o_b_j_e_c_t___t_y_p_e_8cs.html ├── _percent_risk_profile_8cs.html ├── _s_e_l_e_c_t_i_o_n___p_o_o_l_8cs.html ├── _s_e_l_e_c_t_i_o_n___t_y_p_e_8cs.html ├── _s_i_g_n_a_l___b_a_s_e___d_o_u_b_l_e_8cs.html ├── _s_i_g_n_a_l___b_a_s_e___i_n_t_e_g_e_r_8cs.html ├── _s_i_g_n_a_l___b_a_s_e___s_t_r_i_n_g_8cs.html ├── _s_i_g_n_a_l___i_n_f_o___d_o_u_b_l_e_8cs.html ├── _s_i_g_n_a_l___i_n_f_o___i_n_t_e_g_e_r_8cs.html ├── _s_i_g_n_a_l___i_n_f_o___s_t_r_i_n_g_8cs.html ├── _s_r_stop_loss_8cs.html ├── _signal_info_8cs.html ├── _signal_info_key_8cs.html ├── _signal_result_8cs.html ├── _stop_run_8cs.html ├── _strategy_meta_data_8cs.html ├── _t_i_m_e_f_r_a_m_e_8cs.html ├── _t_r_a_d_e___o_p_e_r_a_t_i_o_n_8cs.html ├── _temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs.html ├── _temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs.html ├── _temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs.html ├── _time_of_day_filter_8cs.html ├── _trailing_stop_loss_8cs.html ├── annotated.html ├── arrowdown.png ├── arrowright.png ├── bc_s.png ├── bdwn.png ├── class_d_t_f_l_1_1input_1_1_manipulation_point-members.html ├── class_d_t_f_l_1_1input_1_1_manipulation_point.html ├── class_d_t_f_l_1_1input_1_1_manipulation_points-members.html ├── class_d_t_f_l_1_1input_1_1_manipulation_points.html ├── class_d_t_f_l_1_1input_1_1_manipulation_points.png ├── class_d_t_f_l_1_1signal_1_1_stop_run-members.html ├── class_d_t_f_l_1_1signal_1_1_stop_run.html ├── class_d_t_f_l_1_1signal_1_1_stop_run.png ├── class_d_t_f_l_1_1strategy_1_1_d_t_f_l-members.html ├── class_d_t_f_l_1_1strategy_1_1_d_t_f_l.html ├── class_d_t_f_l_1_1strategy_1_1_d_t_f_l.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_strategy_meta_data-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_strategy_meta_data.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_manager-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_manager.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.png ├── class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource-members.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.html ├── class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_report-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_report.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.png ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit-members.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.html ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.png ├── classes.html ├── classmql4csharp_1_1_logging-members.html ├── classmql4csharp_1_1_logging.html ├── classmqlsharp_1_1_util_1_1_date_util-members.html ├── classmqlsharp_1_1_util_1_1_date_util.html ├── closed.png ├── dir_2d34f7da626cd02ef35bc1da6e2d7a58.html ├── dir_36c27dc73838f68187b9444c0dd868d9.html ├── dir_36c8e0a2eb2cf451f5908e88d651e301.html ├── dir_410b253a5eb152717a820f8e04b67313.html ├── dir_43724e81dd40e09f32417973865cdd64.html ├── dir_47a65a7121aa0a930f89cb28527a3ccc.html ├── dir_60fc22c803f72ca52790a569e5fab485.html ├── dir_628593db0cdce5a76fb85526ae5aa762.html ├── dir_7f93eef91946896e7ff2fb32b654ef52.html ├── dir_8e797e3b249020ae9429fa60e390d1fa.html ├── dir_97e053108737862620ce324d993fa434.html ├── dir_a00775a06164dcb0e5c962d187f9b3b8.html ├── dir_a3f2c39fcf2a252e967fd938e8ac1c5b.html ├── dir_a71c3b2ad23b9ff58220dd012d201987.html ├── dir_b80d8101880334ba15ff5d6819ad8c90.html ├── dir_bd6cdfbf98e0e7dfa68579dbe2920211.html ├── dir_c5f017acb9f5dbaf457d983d634fdb68.html ├── dir_d051c76eebdc544d9c3d734575641c72.html ├── dir_d4f7a754e06480f800a6fab4b04999ce.html ├── doc.png ├── doxygen.css ├── doxygen.png ├── dynsections.js ├── files.html ├── folderclosed.png ├── folderopen.png ├── functions.html ├── functions_b.html ├── functions_c.html ├── functions_d.html ├── functions_e.html ├── functions_f.html ├── functions_func.html ├── functions_func_b.html ├── functions_func_c.html ├── functions_func_d.html ├── functions_func_e.html ├── functions_func_f.html ├── functions_func_g.html ├── functions_func_h.html ├── functions_func_i.html ├── functions_func_l.html ├── functions_func_m.html ├── functions_func_n.html ├── functions_func_o.html ├── functions_func_p.html ├── functions_func_r.html ├── functions_func_s.html ├── functions_func_t.html ├── functions_func_u.html ├── functions_func_w.html ├── functions_func_z.html ├── functions_g.html ├── functions_h.html ├── functions_i.html ├── functions_l.html ├── functions_m.html ├── functions_n.html ├── functions_o.html ├── functions_p.html ├── functions_prop.html ├── functions_r.html ├── functions_s.html ├── functions_t.html ├── functions_u.html ├── functions_v.html ├── functions_vars.html ├── functions_w.html ├── functions_z.html ├── hierarchy.html ├── index.html ├── jquery.js ├── namespace_d_t_f_l.html ├── namespace_d_t_f_l_1_1input.html ├── namespace_d_t_f_l_1_1signal.html ├── namespace_d_t_f_l_1_1strategy.html ├── namespace_m_q_l4_c_sharp.html ├── namespace_m_q_l4_c_sharp_1_1_base.html ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_common.html ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_exceptions.html ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l.html ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy.html ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit.html ├── namespacemembers.html ├── namespacemembers_enum.html ├── namespacemql4csharp.html ├── namespacemql4sharp.html ├── namespacemql4sharp_1_1helpers.html ├── namespacemqlsharp.html ├── namespacemqlsharp_1_1_util.html ├── namespaces.html ├── nav_f.png ├── nav_g.png ├── nav_h.png ├── open.png ├── search │ ├── all_0.html │ ├── all_0.js │ ├── all_1.html │ ├── all_1.js │ ├── all_10.html │ ├── all_10.js │ ├── all_11.html │ ├── all_11.js │ ├── all_12.html │ ├── all_12.js │ ├── all_13.html │ ├── all_13.js │ ├── all_14.html │ ├── all_14.js │ ├── all_15.html │ ├── all_15.js │ ├── all_16.html │ ├── all_16.js │ ├── all_17.html │ ├── all_17.js │ ├── all_2.html │ ├── all_2.js │ ├── all_3.html │ ├── all_3.js │ ├── all_4.html │ ├── all_4.js │ ├── all_5.html │ ├── all_5.js │ ├── all_6.html │ ├── all_6.js │ ├── all_7.html │ ├── all_7.js │ ├── all_8.html │ ├── all_8.js │ ├── all_9.html │ ├── all_9.js │ ├── all_a.html │ ├── all_a.js │ ├── all_b.html │ ├── all_b.js │ ├── all_c.html │ ├── all_c.js │ ├── all_d.html │ ├── all_d.js │ ├── all_e.html │ ├── all_e.js │ ├── all_f.html │ ├── all_f.js │ ├── classes_0.html │ ├── classes_0.js │ ├── classes_1.html │ ├── classes_1.js │ ├── classes_10.html │ ├── classes_10.js │ ├── classes_11.html │ ├── classes_11.js │ ├── classes_12.html │ ├── classes_12.js │ ├── classes_13.html │ ├── classes_13.js │ ├── classes_2.html │ ├── classes_2.js │ ├── classes_3.html │ ├── classes_3.js │ ├── classes_4.html │ ├── classes_4.js │ ├── classes_5.html │ ├── classes_5.js │ ├── classes_6.html │ ├── classes_6.js │ ├── classes_7.html │ ├── classes_7.js │ ├── classes_8.html │ ├── classes_8.js │ ├── classes_9.html │ ├── classes_9.js │ ├── classes_a.html │ ├── classes_a.js │ ├── classes_b.html │ ├── classes_b.js │ ├── classes_c.html │ ├── classes_c.js │ ├── classes_d.html │ ├── classes_d.js │ ├── classes_e.html │ ├── classes_e.js │ ├── classes_f.html │ ├── classes_f.js │ ├── close.png │ ├── enums_0.html │ ├── enums_0.js │ ├── enums_1.html │ ├── enums_1.js │ ├── enums_2.html │ ├── enums_2.js │ ├── enums_3.html │ ├── enums_3.js │ ├── enums_4.html │ ├── enums_4.js │ ├── enums_5.html │ ├── enums_5.js │ ├── enums_6.html │ ├── enums_6.js │ ├── enums_7.html │ ├── enums_7.js │ ├── enumvalues_0.html │ ├── enumvalues_0.js │ ├── enumvalues_1.html │ ├── enumvalues_1.js │ ├── enumvalues_10.html │ ├── enumvalues_10.js │ ├── enumvalues_11.html │ ├── enumvalues_11.js │ ├── enumvalues_12.html │ ├── enumvalues_12.js │ ├── enumvalues_13.html │ ├── enumvalues_13.js │ ├── enumvalues_14.html │ ├── enumvalues_14.js │ ├── enumvalues_15.html │ ├── enumvalues_15.js │ ├── enumvalues_2.html │ ├── enumvalues_2.js │ ├── enumvalues_3.html │ ├── enumvalues_3.js │ ├── enumvalues_4.html │ ├── enumvalues_4.js │ ├── enumvalues_5.html │ ├── enumvalues_5.js │ ├── enumvalues_6.html │ ├── enumvalues_6.js │ ├── enumvalues_7.html │ ├── enumvalues_7.js │ ├── enumvalues_8.html │ ├── enumvalues_8.js │ ├── enumvalues_9.html │ ├── enumvalues_9.js │ ├── enumvalues_a.html │ ├── enumvalues_a.js │ ├── enumvalues_b.html │ ├── enumvalues_b.js │ ├── enumvalues_c.html │ ├── enumvalues_c.js │ ├── enumvalues_d.html │ ├── enumvalues_d.js │ ├── enumvalues_e.html │ ├── enumvalues_e.js │ ├── enumvalues_f.html │ ├── enumvalues_f.js │ ├── files_0.html │ ├── files_0.js │ ├── files_1.html │ ├── files_1.js │ ├── files_2.html │ ├── files_2.js │ ├── files_3.html │ ├── files_3.js │ ├── files_4.html │ ├── files_4.js │ ├── files_5.html │ ├── files_5.js │ ├── files_6.html │ ├── files_6.js │ ├── files_7.html │ ├── files_7.js │ ├── files_8.html │ ├── files_8.js │ ├── files_9.html │ ├── files_9.js │ ├── files_a.html │ ├── files_a.js │ ├── files_b.html │ ├── files_b.js │ ├── files_c.html │ ├── files_c.js │ ├── files_d.html │ ├── files_d.js │ ├── functions_0.html │ ├── functions_0.js │ ├── functions_1.html │ ├── functions_1.js │ ├── functions_10.html │ ├── functions_10.js │ ├── functions_11.html │ ├── functions_11.js │ ├── functions_12.html │ ├── functions_12.js │ ├── functions_13.html │ ├── functions_13.js │ ├── functions_2.html │ ├── functions_2.js │ ├── functions_3.html │ ├── functions_3.js │ ├── functions_4.html │ ├── functions_4.js │ ├── functions_5.html │ ├── functions_5.js │ ├── functions_6.html │ ├── functions_6.js │ ├── functions_7.html │ ├── functions_7.js │ ├── functions_8.html │ ├── functions_8.js │ ├── functions_9.html │ ├── functions_9.js │ ├── functions_a.html │ ├── functions_a.js │ ├── functions_b.html │ ├── functions_b.js │ ├── functions_c.html │ ├── functions_c.js │ ├── functions_d.html │ ├── functions_d.js │ ├── functions_e.html │ ├── functions_e.js │ ├── functions_f.html │ ├── functions_f.js │ ├── mag_sel.png │ ├── namespaces_0.html │ ├── namespaces_0.js │ ├── namespaces_1.html │ ├── namespaces_1.js │ ├── nomatches.html │ ├── properties_0.html │ ├── properties_0.js │ ├── properties_1.html │ ├── properties_1.js │ ├── properties_2.html │ ├── properties_2.js │ ├── properties_3.html │ ├── properties_3.js │ ├── properties_4.html │ ├── properties_4.js │ ├── properties_5.html │ ├── properties_5.js │ ├── search.css │ ├── search.js │ ├── search_l.png │ ├── search_m.png │ ├── search_r.png │ ├── searchdata.js │ ├── variables_0.html │ ├── variables_0.js │ ├── variables_1.html │ ├── variables_1.js │ ├── variables_2.html │ ├── variables_2.js │ ├── variables_3.html │ ├── variables_3.js │ ├── variables_4.html │ ├── variables_4.js │ ├── variables_5.html │ ├── variables_5.js │ ├── variables_6.html │ ├── variables_6.js │ ├── variables_7.html │ ├── variables_7.js │ ├── variables_8.html │ ├── variables_8.js │ ├── variables_9.html │ ├── variables_9.js │ ├── variables_a.html │ ├── variables_a.js │ ├── variables_b.html │ ├── variables_b.js │ ├── variables_c.html │ └── variables_c.js ├── splitbar.png ├── struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info-members.html ├── struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html ├── sync_off.png ├── sync_on.png ├── tab_a.png ├── tab_b.png ├── tab_h.png ├── tab_s.png └── tabs.css └── latex ├── Makefile ├── _a_l_i_g_n___m_o_d_e_8cs.tex ├── _a_p_p_l_i_e_d___p_r_i_c_e_8cs.tex ├── _a_t_r_stop_loss_8cs.tex ├── _assembly_info_8cs.tex ├── _base_filter_8cs.tex ├── _base_risk_profile_8cs.tex ├── _base_signal_8cs.tex ├── _base_stop_loss_8cs.tex ├── _base_strategy_8cs.tex ├── _base_take_profit_8cs.tex ├── _break_even_stop_loss_8cs.tex ├── _c_o_l_o_r_8cs.tex ├── _c_s_v_order_8cs.tex ├── _c_s_v_orders_8cs.tex ├── _d_l_l_object_wrapper_8cs.tex ├── _d_t_f_l_8cs.tex ├── _date_util_8cs.tex ├── _direction_8cs.tex ├── _error_8cs.tex ├── _fixed_lots_risk_profile_8cs.tex ├── _fixed_pip_take_profit_8cs.tex ├── _j_s_o_n_helper_8cs.tex ├── _logging_8cs.tex ├── _m_a___m_e_t_h_o_d_8cs.tex ├── _m_a_cross_8cs.tex ├── _m_a_r_k_e_t___i_n_f_o_8cs.tex ├── _m_q_l_base_8cs.tex ├── _m_q_l_command_8cs.tex ├── _m_q_l_command_manager_8cs.tex ├── _m_q_l_command_request_8cs.tex ├── _m_q_l_exceptions_8cs.tex ├── _m_q_l_expert_8cs.tex ├── _m_q_l_r_e_s_t_resource_8cs.tex ├── _m_q_l_r_e_s_t_strategy_8cs.tex ├── _m_q_l_thread_pool_8cs.tex ├── _ma_cross_strategy_8cs.tex ├── _manipulation_point_8cs.tex ├── _manipulation_points_8cs.tex ├── _news_close_out_filter_8cs.tex ├── _news_input_filter_8cs.tex ├── _news_report_8cs.tex ├── _news_reports_8cs.tex ├── _o_b_j_e_c_t___p_r_o_p_e_r_t_y_8cs.tex ├── _o_b_j_e_c_t___t_y_p_e_8cs.tex ├── _percent_risk_profile_8cs.tex ├── _s_e_l_e_c_t_i_o_n___p_o_o_l_8cs.tex ├── _s_e_l_e_c_t_i_o_n___t_y_p_e_8cs.tex ├── _s_i_g_n_a_l___b_a_s_e___d_o_u_b_l_e_8cs.tex ├── _s_i_g_n_a_l___b_a_s_e___i_n_t_e_g_e_r_8cs.tex ├── _s_i_g_n_a_l___b_a_s_e___s_t_r_i_n_g_8cs.tex ├── _s_i_g_n_a_l___i_n_f_o___d_o_u_b_l_e_8cs.tex ├── _s_i_g_n_a_l___i_n_f_o___i_n_t_e_g_e_r_8cs.tex ├── _s_i_g_n_a_l___i_n_f_o___s_t_r_i_n_g_8cs.tex ├── _s_r_stop_loss_8cs.tex ├── _signal_info_8cs.tex ├── _signal_info_key_8cs.tex ├── _signal_result_8cs.tex ├── _stop_run_8cs.tex ├── _strategy_meta_data_8cs.tex ├── _t_i_m_e_f_r_a_m_e_8cs.tex ├── _t_r_a_d_e___o_p_e_r_a_t_i_o_n_8cs.tex ├── _temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs.tex ├── _temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs.tex ├── _temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs.tex ├── _time_of_day_filter_8cs.tex ├── _trailing_stop_loss_8cs.tex ├── annotated.tex ├── class_d_t_f_l_1_1input_1_1_manipulation_point.tex ├── class_d_t_f_l_1_1input_1_1_manipulation_points.eps ├── class_d_t_f_l_1_1input_1_1_manipulation_points.tex ├── class_d_t_f_l_1_1signal_1_1_stop_run.eps ├── class_d_t_f_l_1_1signal_1_1_stop_run.tex ├── class_d_t_f_l_1_1strategy_1_1_d_t_f_l.eps ├── class_d_t_f_l_1_1strategy_1_1_d_t_f_l.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_strategy_meta_data.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_manager.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.tex ├── class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.eps ├── class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_report.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.tex ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.eps ├── class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.tex ├── classmql4csharp_1_1_logging.tex ├── classmqlsharp_1_1_util_1_1_date_util.tex ├── dir_2d34f7da626cd02ef35bc1da6e2d7a58.tex ├── dir_36c27dc73838f68187b9444c0dd868d9.tex ├── dir_36c8e0a2eb2cf451f5908e88d651e301.tex ├── dir_410b253a5eb152717a820f8e04b67313.tex ├── dir_43724e81dd40e09f32417973865cdd64.tex ├── dir_47a65a7121aa0a930f89cb28527a3ccc.tex ├── dir_60fc22c803f72ca52790a569e5fab485.tex ├── dir_628593db0cdce5a76fb85526ae5aa762.tex ├── dir_7f93eef91946896e7ff2fb32b654ef52.tex ├── dir_8e797e3b249020ae9429fa60e390d1fa.tex ├── dir_97e053108737862620ce324d993fa434.tex ├── dir_a00775a06164dcb0e5c962d187f9b3b8.tex ├── dir_a3f2c39fcf2a252e967fd938e8ac1c5b.tex ├── dir_a71c3b2ad23b9ff58220dd012d201987.tex ├── dir_b80d8101880334ba15ff5d6819ad8c90.tex ├── dir_bd6cdfbf98e0e7dfa68579dbe2920211.tex ├── dir_c5f017acb9f5dbaf457d983d634fdb68.tex ├── dir_d051c76eebdc544d9c3d734575641c72.tex ├── dir_d4f7a754e06480f800a6fab4b04999ce.tex ├── doxygen.sty ├── files.tex ├── hierarchy.tex ├── make.bat ├── namespace_d_t_f_l.tex ├── namespace_d_t_f_l_1_1input.tex ├── namespace_d_t_f_l_1_1signal.tex ├── namespace_d_t_f_l_1_1strategy.tex ├── namespace_m_q_l4_c_sharp.tex ├── namespace_m_q_l4_c_sharp_1_1_base.tex ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_common.tex ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.tex ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_exceptions.tex ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l.tex ├── namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy.tex ├── namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit.tex ├── namespacemql4csharp.tex ├── namespacemql4sharp.tex ├── namespacemql4sharp_1_1helpers.tex ├── namespacemqlsharp.tex ├── namespacemqlsharp_1_1_util.tex ├── namespaces.tex ├── refman.tex └── struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.tex /MQL4CSharp.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.24720.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MQL4CSharp", "MQL4CSharp\MQL4CSharp.csproj", "{C2E17D18-6696-436A-BCB4-101F1BD53AF3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C2E17D18-6696-436A-BCB4-101F1BD53AF3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C2E17D18-6696-436A-BCB4-101F1BD53AF3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C2E17D18-6696-436A-BCB4-101F1BD53AF3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C2E17D18-6696-436A-BCB4-101F1BD53AF3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Common/BaseFilter.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | using MQL4CSharp.Base.Enums; 18 | using System; 19 | 20 | namespace MQL4CSharp.Base.Common 21 | { 22 | public abstract class BaseFilter 23 | { 24 | private BaseStrategy strategy; 25 | 26 | public BaseFilter(BaseStrategy strategy) 27 | { 28 | this.strategy = strategy; 29 | } 30 | 31 | public abstract bool filter(String symbol, TIMEFRAME timeframe); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Common/BaseRiskProfile.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | using System; 18 | 19 | namespace MQL4CSharp.Base.Common 20 | { 21 | public abstract class BaseRiskProfile 22 | { 23 | private BaseStrategy strategy; 24 | 25 | public BaseRiskProfile(BaseStrategy strategy) 26 | { 27 | this.strategy = strategy; 28 | } 29 | 30 | public abstract double getLotSize(String symbol, double stopDistance); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Common/BaseSignal.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | using System; 18 | using MQL4CSharp.Base.Enums; 19 | 20 | namespace MQL4CSharp.Base.Common 21 | { 22 | public abstract class BaseSignal 23 | { 24 | public BaseStrategy strategy; 25 | 26 | public BaseSignal(BaseStrategy strategy) 27 | { 28 | this.strategy = strategy; 29 | } 30 | 31 | public abstract SignalResult evaluate(String symbol, TIMEFRAME timeframe); 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Common/SignalInfo.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | 20 | namespace MQL4CSharp.Base.Common 21 | { 22 | public class SignalInfo : Dictionary 23 | { 24 | public SignalInfo() : base() 25 | { 26 | 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Common/SignalInfoKey.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Common 18 | { 19 | public enum SignalInfoKey 20 | { 21 | PRICE_CONFIRM, 22 | PRICE_BOUND, 23 | STOP_LEVEL, 24 | ENTRY_LEVEL, 25 | BREAKEVEN_LEVEL, 26 | EXPIRY, 27 | TAKEPROFIT_LEVEL 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/ALIGN_MODE.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum ALIGN_MODE 20 | { 21 | ALIGN_LEFT = 1, 22 | ALIGN_CENTER = 2, 23 | ALIGN_RIGHT = 3, 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/Direction.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using System.Text; 21 | using System.Threading.Tasks; 22 | 23 | namespace MQL4CSharp.Base.Enums 24 | { 25 | public enum Direction 26 | { 27 | NEUTRAL, 28 | LONG, 29 | SHORT, 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/Error.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum Error 20 | { 21 | ERROR_NO_COMMAND = 1, 22 | ERROR_UNHANDLED = 2, 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/MA_METHOD.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum MA_METHOD 20 | { 21 | MODE_SMA = 0, // Simple averaging 22 | MODE_EMA = 1, // Exponential averaging 23 | MODE_SMMA = 2, // Smoothed averaging 24 | MODE_LWMA = 3, // Linear-weighted averaging 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SELECTION_POOL.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SELECTION_POOL 20 | { 21 | MODE_TRADES = 0, 22 | MODE_HISTORY = 1, 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SELECTION_TYPE.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SELECTION_TYPE 20 | { 21 | SELECT_BY_POS = 0, 22 | SELECT_BY_TICKET = 1, 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_BASE_DOUBLE.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_BASE_DOUBLE 20 | { 21 | SIGNAL_BASE_BALANCE = 1, 22 | SIGNAL_BASE_EQUITY = 2, 23 | SIGNAL_BASE_GAIN = 3, 24 | SIGNAL_BASE_MAX_DRAWDOWN = 4, 25 | SIGNAL_BASE_PRICE = 5, 26 | SIGNAL_BASE_ROI = 6, 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_BASE_INTEGER.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_BASE_INTEGER 20 | { 21 | SIGNAL_BASE_DATE_PUBLISHED = 1, 22 | SIGNAL_BASE_DATE_STARTED = 2, 23 | SIGNAL_BASE_ID = 3, 24 | SIGNAL_BASE_LEVERAGE = 4, 25 | SIGNAL_BASE_PIPS = 5, 26 | SIGNAL_BASE_RATING = 6, 27 | SIGNAL_BASE_SUBSCRIBERS = 7, 28 | SIGNAL_BASE_TRADES = 8, 29 | SIGNAL_BASE_TRADE_MODE = 9, 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_BASE_STRING.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_BASE_STRING 20 | { 21 | SIGNAL_BASE_AUTHOR_LOGIN = 1, 22 | SIGNAL_BASE_BROKER = 2, 23 | SIGNAL_BASE_BROKER_SERVER = 3, 24 | SIGNAL_BASE_NAME = 4, 25 | SIGNAL_BASE_CURRENCY = 5, 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_INFO_DOUBLE.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_INFO_DOUBLE 20 | { 21 | SIGNAL_INFO_EQUITY_LIMIT = 1, 22 | SIGNAL_INFO_SLIPPAGE = 2, 23 | SIGNAL_INFO_VOLUME_PERCENT = 3, 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_INFO_INTEGER.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_INFO_INTEGER 20 | { 21 | SIGNAL_INFO_CONFIRMATIONS_DISABLED = 1, 22 | SIGNAL_INFO_COPY_SLTP = 2, 23 | SIGNAL_INFO_DEPOSIT_PERCENT = 3, 24 | SIGNAL_INFO_ID = 4, 25 | SIGNAL_INFO_SUBSCRIPTION_ENABLED = 5, 26 | SIGNAL_INFO_TERMS_AGREE = 6, 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/SIGNAL_INFO_STRING.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum SIGNAL_INFO_STRING 20 | { 21 | SIGNAL_INFO_NAME = 1, 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/TRADE_OPERATION.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum TRADE_OPERATION 20 | { 21 | OP_BUY = 0, // Buy operation 22 | OP_SELL = 1, // Sell operation 23 | OP_BUYLIMIT = 2, //Buy limit pending order 24 | OP_SELLLIMIT = 3, // Sell limit pending order 25 | OP_BUYSTOP = 4, // Buy stop pending order 26 | OP_SELLSTOP = 5, // Sell stop pending order 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/Enums/TimeFrame.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2016 Jason Separovic 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | 17 | namespace MQL4CSharp.Base.Enums 18 | { 19 | public enum TIMEFRAME 20 | { 21 | PERIOD_CURRENT = 0, 22 | PERIOD_M1 = 1, 23 | PERIOD_M5 = 5, 24 | PERIOD_M15 = 15, 25 | PERIOD_M30 = 30, 26 | PERIOD_H1 = 60, 27 | PERIOD_H4 = 240, 28 | PERIOD_D1 = 1440, 29 | PERIOD_W1 = 10080, 30 | PERIOD_MN1 = 43200 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /MQL4CSharp/Base/MQL/MQLThreadPool.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Amib.Threading; 7 | using log4net; 8 | 9 | namespace MQL4CSharp.Base.MQL 10 | { 11 | public class MQLThreadPool : SmartThreadPool 12 | { 13 | private static readonly ILog LOG = LogManager.GetLogger(typeof(MQLThreadPool)); 14 | 15 | private Int64 ix; 16 | public MQLThreadPool(Int64 index) 17 | { 18 | this.ix = index; 19 | LOG.Debug(String.Format("Initializing ThreadPool: {0}", index)); 20 | MinThreads = 1; 21 | MaxThreads = 1; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /MQL4CSharp/MQL4CSharp.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $id$ 5 | $version$ 6 | $title$ 7 | Jason Separovic 8 | Jason Separovic 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | https://github.com/jseparovic/MQL4CSharp 11 | false 12 | Metatrader MQL library for C# 13 | PreRelease Beta Stage 14 | Copyright 2016 15 | MQL4CSharp 16 | 17 | 18 | -------------------------------------------------------------------------------- /MQL4CSharp/UserDefined/Strategy/MQLRESTStrategy.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace MQL4CSharp.UserDefined.Strategy 8 | { 9 | /// 10 | /// Attach this one to your chart just to enable the REST API. 11 | /// It does nothing, but every MQLExpert has a REST endpoint 12 | /// 13 | public class MQLRESTStrategy : Base.MQLBase 14 | { 15 | public MQLRESTStrategy(long ix) : base(ix) 16 | { 17 | } 18 | 19 | public override void OnInit() 20 | { 21 | } 22 | 23 | public override void OnDeinit() 24 | { 25 | } 26 | 27 | public override void OnTick() 28 | { 29 | } 30 | 31 | public override void OnTimer() 32 | { 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /MQL4CSharp/log4net.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /MQL4CSharp/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/html/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/Thumbs.db -------------------------------------------------------------------------------- /docs/html/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/arrowdown.png -------------------------------------------------------------------------------- /docs/html/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/arrowright.png -------------------------------------------------------------------------------- /docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/bc_s.png -------------------------------------------------------------------------------- /docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/bdwn.png -------------------------------------------------------------------------------- /docs/html/class_d_t_f_l_1_1input_1_1_manipulation_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_d_t_f_l_1_1input_1_1_manipulation_points.png -------------------------------------------------------------------------------- /docs/html/class_d_t_f_l_1_1signal_1_1_stop_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_d_t_f_l_1_1signal_1_1_stop_run.png -------------------------------------------------------------------------------- /docs/html/class_d_t_f_l_1_1strategy_1_1_d_t_f_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_d_t_f_l_1_1strategy_1_1_d_t_f_l.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_broker_busy_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_call_function_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_load_library_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_cannot_open_file_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_noreply_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_not_found_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chart_prop_invalid_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartindicator_not_found_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_chartwindow_not_found_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_common_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_custom_indicator_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_arrayresize_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_bin_stringsize_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_buffer_allocation_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_clean_directory_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_directory_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_delete_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_open_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_cannot_rewrite_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_directory_not_exist_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_incompatible_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_invalid_handle_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_is_directory_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_bin_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_csv_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_directory_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_exist_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_toread_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_towrite_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txt_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_not_txtorcsv_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_read_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_stringresize_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_struct_with_objects_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_long_filename_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_too_many_opened_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_write_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_directoryname_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_filename_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_file_wrong_handle_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_formatters_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_format_too_many_parameters_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_changedir_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_closed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_connect_failed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_file_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_nologin_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_ftp_noserver_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_func_not_allowed_in_testing_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_function_not_confirmed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_arrays_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incompatible_fileaccess_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_incorrect_seriesarray_using_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_init_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_indicator_cannot_load_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_integer_parameter_expected_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_internal_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_account_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramscnt_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_function_paramvalue_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_pointer_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_price_param_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_stops_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_ticket_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_parameters_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_invalid_trade_volume_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_m_q_l_exceptions.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_malfunctional_trade_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_market_closed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_connection_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_history_data_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_arraystring_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_call_stack_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_history_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_indicator_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_param_string_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_returned_str_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_memory_for_temp_string_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_mqlerror_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_object_name_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_order_selected_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_result_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_no_specified_subwindow_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_money_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_rights_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_enough_stack_for_param_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_array_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_arraystring_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_not_initialized_string_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_parameter_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_settings_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_notification_too_frequent_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_already_exists_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_coordinates_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_object_does_not_exist_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_off_quotes_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_old_version_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_order_locked_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_out_of_memory_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_recursive_stack_overflow_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_remainder_from_zero_divide_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_requote_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_duplicated_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_found_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_resource_not_supported_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_send_mail_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_server_busy_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_shorts_not_allowed_exception_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_array_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_file_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_some_object_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_function_internal_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_string_parameter_expected_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_symbol_select_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_system_busy_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_frequent_requests_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_long_string_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_opened_files_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_too_many_requests_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_context_busy_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_disabled_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_error_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expert_disabled_by_server_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_expiration_denied_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_hedge_prohibited_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_modify_denied_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_not_allowed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_prohibited_by_fifo_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_timeout_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_trade_too_many_orders_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_connect_failed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_invalid_address_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_request_failed_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_webrequest_timeout_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_file_name_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_function_pointer_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_wrong_jump_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy.png -------------------------------------------------------------------------------- /docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit.png -------------------------------------------------------------------------------- /docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/closed.png -------------------------------------------------------------------------------- /docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/doc.png -------------------------------------------------------------------------------- /docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/doxygen.png -------------------------------------------------------------------------------- /docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/folderclosed.png -------------------------------------------------------------------------------- /docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/folderopen.png -------------------------------------------------------------------------------- /docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/nav_f.png -------------------------------------------------------------------------------- /docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/nav_g.png -------------------------------------------------------------------------------- /docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/nav_h.png -------------------------------------------------------------------------------- /docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/open.png -------------------------------------------------------------------------------- /docs/html/search/all_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['violet',['Violet',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa80f1187112e2e5e0403499147f7014b8',1,'MQL4CSharp::Base::Enums']]], 4 | ['volume',['volume',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#a4909b697563b89b879645dfa5a2a6aba',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/all_15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_16.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['yellow',['Yellow',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa51e6cd92b6c45f9affdc158ecca2b8b8',1,'MQL4CSharp::Base::Enums']]], 4 | ['yellowgreen',['YellowGreen',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aab46e14a2c4a2dbee1eb46c02042b4e58',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/all_17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_17.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zerodivideexception',['ZeroDivideException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 4 | ['zerodivideexception',['ZeroDivideException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.html#a7f4b0a1579f5f9eebb04be9401b014ad',1,'MQL4CSharp::Base::Exceptions::ZeroDivideException']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/all_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jsonhelper_2ecs',['JSONHelper.cs',['../_j_s_o_n_helper_8cs.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['khaki',['Khaki',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa7ec23b405c5319f55b7660569c077f41',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['accountdisabledexception',['AccountDisabledException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_account_disabled_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 4 | ['arrayasparameterexpectedexception',['ArrayAsParameterExpectedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_as_parameter_expected_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 5 | ['arrayindexoutofrangeexception',['ArrayIndexOutOfRangeException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_index_out_of_range_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 6 | ['arrayinvalidexception',['ArrayInvalidException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_array_invalid_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 7 | ['atrstoploss',['ATRStopLoss',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss.html',1,'MQL4CSharp::UserDefined::StopLoss']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/classes_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['unknowncommandexception',['UnknownCommandException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_command_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 4 | ['unknownobjectpropertyexception',['UnknownObjectPropertyException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_property_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 5 | ['unknownobjecttypeexception',['UnknownObjectTypeException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_object_type_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 6 | ['unknownsymbolexception',['UnknownSymbolException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_unknown_symbol_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 7 | ['usererrorfirstexception',['UserErrorFirstException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_user_error_first_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/classes_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zerodivideexception',['ZeroDivideException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dateutil',['DateUtil',['../classmqlsharp_1_1_util_1_1_date_util.html',1,'mqlsharp::Util']]], 4 | ['dllcallsnotallowedexception',['DllCallsNotAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dll_calls_not_allowed_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 5 | ['dllfunccriticalerrorexception',['DllfuncCriticalerrorException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_dllfunc_criticalerror_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 6 | ['dllobjectwrapper',['DLLObjectWrapper',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper.html',1,'MQL4CSharp::Base::MQL']]], 7 | ['doubleparameterexpectedexception',['DoubleParameterExpectedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_double_parameter_expected_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 8 | ['dtfl',['DTFL',['../class_d_t_f_l_1_1strategy_1_1_d_t_f_l.html',1,'DTFL::strategy']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/html/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['endoffileexception',['EndOfFileException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_end_of_file_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 4 | ['externalcallsnotallowedexception',['ExternalCallsNotAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_external_calls_not_allowed_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/classes_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['globalvariablenotfoundexception',['GlobalVariableNotFoundException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variable_not_found_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 4 | ['globalvariablesprocessingexception',['GlobalVariablesProcessingException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_global_variables_processing_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/classes_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['historywillupdatedexception',['HistoryWillUpdatedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_history_will_updated_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['logging',['Logging',['../classmql4csharp_1_1_logging.html',1,'mql4csharp']]], 4 | ['longpositionsonlyallowedexception',['LongPositionsOnlyAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.html',1,'MQL4CSharp::Base::Exceptions']]], 5 | ['longsnotallowedexception',['LongsNotAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/classes_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['percentriskprofile',['PercentRiskProfile',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.html',1,'MQL4CSharp::UserDefined::RiskProfile']]], 4 | ['pricechangedexception',['PriceChangedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.html',1,'MQL4CSharp::Base::Exceptions']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/search/close.png -------------------------------------------------------------------------------- /docs/html/search/enums_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['align_5fmode',['ALIGN_MODE',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a39e4f20c4e2a3e92e3571279c771960c',1,'MQL4CSharp::Base::Enums']]], 4 | ['applied_5fprice',['APPLIED_PRICE',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#ab234b380de76951cafea3164c80b3d1b',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enums_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['color',['COLOR',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1a',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enums_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['direction',['Direction',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a8bd45b58389fa72ba1d4e8a192f17510',1,'MQL4CSharp::Base::Enums']]], 4 | ['dtflaction',['DTFLAction',['../namespace_d_t_f_l_1_1strategy.html#a2e9c5b33f52ebf74eaa38a23af10120e',1,'DTFL::strategy']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enums_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['error',['Error',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a413d037ba459734cc2e9f92b0d5c7352',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enums_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ma_5fmethod',['MA_METHOD',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a08834770d91baf0ef62cf476822cf9a4',1,'MQL4CSharp::Base::Enums']]], 4 | ['market_5finfo',['MARKET_INFO',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a9f646262cb7886733468ca2a7eb9d874',1,'MQL4CSharp::Base::Enums']]], 5 | ['mqlcommand',['MQLCommand',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a86fc232b6f9a036bf9bff2c97fa38439',1,'MQL4CSharp::Base::Enums']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/enums_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['object_5fproperty',['OBJECT_PROPERTY',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#ae66979ea6468fb0f506f88d9f3e35f3b',1,'MQL4CSharp::Base::Enums']]], 4 | ['object_5ftype',['OBJECT_TYPE',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a357639d93cdcbbcabdac179ac6242dd7',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enums_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['timeframe',['TIMEFRAME',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a838810aaa87c63c12737408dba8c0b35',1,'MQL4CSharp::Base::Enums']]], 4 | ['trade_5foperation',['TRADE_OPERATION',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#aa66cfebab64daf6099edf09607bbb1d9',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['uninitializereason_5f1',['UninitializeReason_1',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a86fc232b6f9a036bf9bff2c97fa38439aab47acf8f9756a52901e1eb16883a502',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['violet',['Violet',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa80f1187112e2e5e0403499147f7014b8',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['yellow',['Yellow',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa51e6cd92b6c45f9affdc158ecca2b8b8',1,'MQL4CSharp::Base::Enums']]], 4 | ['yellowgreen',['YellowGreen',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aab46e14a2c4a2dbee1eb46c02042b4e58',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['entry_5flevel',['ENTRY_LEVEL',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_common.html#a7f4b5e1e5eb42605189fc27133264d58a2cd07eb6c0aee86f5391af90f8eb5083',1,'MQL4CSharp::Base::Common']]], 4 | ['error_5fno_5fcommand',['ERROR_NO_COMMAND',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a413d037ba459734cc2e9f92b0d5c7352ab42c88a1a52e2eb9f4e445422ba2cbcf',1,'MQL4CSharp::Base::Enums']]], 5 | ['error_5funhandled',['ERROR_UNHANDLED',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a413d037ba459734cc2e9f92b0d5c7352ab85255ede5dd1f0177b070d221e826aa',1,'MQL4CSharp::Base::Enums']]], 6 | ['expiry',['EXPIRY',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_common.html#a7f4b5e1e5eb42605189fc27133264d58ab737102a48b5eb1adc0a12385033af09',1,'MQL4CSharp::Base::Common']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['firebrick',['FireBrick',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aaac4d6f76921849493502d9dcdfc3f0dd',1,'MQL4CSharp::Base::Enums']]], 4 | ['forestgreen',['ForestGreen',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa9e297fb21ed0f2e9c342493676e440f5',1,'MQL4CSharp::Base::Enums']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hidetestindicators_5f1',['HideTestIndicators_1',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a86fc232b6f9a036bf9bff2c97fa38439a098e1a16d85b9e6043acec14bc02727a',1,'MQL4CSharp::Base::Enums']]], 4 | ['honeydew',['Honeydew',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa4702a340a91866eea3143f6c1c735ef4',1,'MQL4CSharp::Base::Enums']]], 5 | ['hotpink',['HotPink',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa1d4f55b32e039f4900e18b52b082c7a5',1,'MQL4CSharp::Base::Enums']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['khaki',['Khaki',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa7ec23b405c5319f55b7660569c077f41',1,'MQL4CSharp::Base::Enums']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['navajowhite',['NavajoWhite',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aab3d9de5120e9a8c9387e8776c91ebfc8',1,'MQL4CSharp::Base::Enums']]], 4 | ['navy',['Navy',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa13ad5ac690e735fa48cf982532174e79',1,'MQL4CSharp::Base::Enums']]], 5 | ['neutral',['NEUTRAL',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a8bd45b58389fa72ba1d4e8a192f17510a31ba17aa58cdb681423f07ca21a6efc7',1,'MQL4CSharp::Base::Enums']]], 6 | ['none',['NONE',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aab50339a10e1de285ac99d4c3990b8693',1,'MQL4CSharp::Base::Enums']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['red',['Red',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aaee38e4d5dd68c4e440825018d549cb47',1,'MQL4CSharp::Base::Enums']]], 4 | ['refreshrates_5f1',['RefreshRates_1',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a86fc232b6f9a036bf9bff2c97fa38439aa2ae02b9bab4e57e7fd22b0d77d3932a',1,'MQL4CSharp::Base::Enums']]], 5 | ['rosybrown',['RosyBrown',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa36b966a66d6bd385bc65c4ea063c841c',1,'MQL4CSharp::Base::Enums']]], 6 | ['royalblue',['RoyalBlue',['../namespace_m_q_l4_c_sharp_1_1_base_1_1_enums.html#a79b99235c71c70f2f5207aac2ff24f1aa3c6a0f673ebc53ef5e2912c59330c802',1,'MQL4CSharp::Base::Enums']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['align_5fmode_2ecs',['ALIGN_MODE.cs',['../_a_l_i_g_n___m_o_d_e_8cs.html',1,'']]], 4 | ['applied_5fprice_2ecs',['APPLIED_PRICE.cs',['../_a_p_p_l_i_e_d___p_r_i_c_e_8cs.html',1,'']]], 5 | ['assemblyinfo_2ecs',['AssemblyInfo.cs',['../_assembly_info_8cs.html',1,'']]], 6 | ['atrstoploss_2ecs',['ATRStopLoss.cs',['../_a_t_r_stop_loss_8cs.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['basefilter_2ecs',['BaseFilter.cs',['../_base_filter_8cs.html',1,'']]], 4 | ['baseriskprofile_2ecs',['BaseRiskProfile.cs',['../_base_risk_profile_8cs.html',1,'']]], 5 | ['basesignal_2ecs',['BaseSignal.cs',['../_base_signal_8cs.html',1,'']]], 6 | ['basestoploss_2ecs',['BaseStopLoss.cs',['../_base_stop_loss_8cs.html',1,'']]], 7 | ['basestrategy_2ecs',['BaseStrategy.cs',['../_base_strategy_8cs.html',1,'']]], 8 | ['basetakeprofit_2ecs',['BaseTakeProfit.cs',['../_base_take_profit_8cs.html',1,'']]], 9 | ['breakevenstoploss_2ecs',['BreakEvenStopLoss.cs',['../_break_even_stop_loss_8cs.html',1,'']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /docs/html/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['color_2ecs',['COLOR.cs',['../_c_o_l_o_r_8cs.html',1,'']]], 4 | ['csvorder_2ecs',['CSVOrder.cs',['../_c_s_v_order_8cs.html',1,'']]], 5 | ['csvorders_2ecs',['CSVOrders.cs',['../_c_s_v_orders_8cs.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dateutil_2ecs',['DateUtil.cs',['../_date_util_8cs.html',1,'']]], 4 | ['direction_2ecs',['Direction.cs',['../_direction_8cs.html',1,'']]], 5 | ['dllobjectwrapper_2ecs',['DLLObjectWrapper.cs',['../_d_l_l_object_wrapper_8cs.html',1,'']]], 6 | ['dtfl_2ecs',['DTFL.cs',['../_d_t_f_l_8cs.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['error_2ecs',['Error.cs',['../_error_8cs.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fixedlotsriskprofile_2ecs',['FixedLotsRiskProfile.cs',['../_fixed_lots_risk_profile_8cs.html',1,'']]], 4 | ['fixedpiptakeprofit_2ecs',['FixedPipTakeProfit.cs',['../_fixed_pip_take_profit_8cs.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jsonhelper_2ecs',['JSONHelper.cs',['../_j_s_o_n_helper_8cs.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['logging_2ecs',['Logging.cs',['../_logging_8cs.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['newscloseoutfilter_2ecs',['NewsCloseOutFilter.cs',['../_news_close_out_filter_8cs.html',1,'']]], 4 | ['newsinputfilter_2ecs',['NewsInputFilter.cs',['../_news_input_filter_8cs.html',1,'']]], 5 | ['newsreport_2ecs',['NewsReport.cs',['../_news_report_8cs.html',1,'']]], 6 | ['newsreports_2ecs',['NewsReports.cs',['../_news_reports_8cs.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/files_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['object_5fproperty_2ecs',['OBJECT_PROPERTY.cs',['../_o_b_j_e_c_t___p_r_o_p_e_r_t_y_8cs.html',1,'']]], 4 | ['object_5ftype_2ecs',['OBJECT_TYPE.cs',['../_o_b_j_e_c_t___t_y_p_e_8cs.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/files_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['percentriskprofile_2ecs',['PercentRiskProfile.cs',['../_percent_risk_profile_8cs.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/functions_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zerodivideexception',['ZeroDivideException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_zero_divide_exception.html#a7f4b0a1579f5f9eebb04be9401b014ad',1,'MQL4CSharp::Base::Exceptions::ZeroDivideException']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['loginfoonce',['logInfoOnce',['../class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.html#ab4d95f5d8cdab06dc8bf2023675e429f',1,'MQL4CSharp::Base::BaseStrategy']]], 4 | ['longpositionsonlyallowedexception',['LongPositionsOnlyAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_long_positions_only_allowed_exception.html#a5147ccd40e57a3d4a2835a22201ea1e7',1,'MQL4CSharp::Base::Exceptions::LongPositionsOnlyAllowedException']]], 5 | ['longsnotallowedexception',['LongsNotAllowedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_longs_not_allowed_exception.html#a371951ec7936f968b8659778b3e99fef',1,'MQL4CSharp::Base::Exceptions::LongsNotAllowedException']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/functions_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['percentriskprofile',['PercentRiskProfile',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile.html#ae20f09e9a71337b11d91a123c6d82ee2',1,'MQL4CSharp::UserDefined::RiskProfile::PercentRiskProfile']]], 4 | ['period',['Period',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.html#a96a91acf49c29e0c1654877351edb0a5',1,'MQL4CSharp::Base::MQLBase']]], 5 | ['piptopoint',['pipToPoint',['../class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.html#a19f006fb25ac295b50bca5ef014b276d',1,'MQL4CSharp::Base::BaseStrategy']]], 6 | ['point',['Point',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base.html#a5eeec0116ca1f42e494af5ca1b976145',1,'MQL4CSharp::Base::MQLBase']]], 7 | ['pricechangedexception',['PriceChangedException',['../class_m_q_l4_c_sharp_1_1_base_1_1_exceptions_1_1_price_changed_exception.html#a6996b97ec1f198e3feed6e4938d5aca3',1,'MQL4CSharp::Base::Exceptions::PriceChangedException']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /docs/html/search/namespaces_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dtfl',['DTFL',['../namespace_d_t_f_l.html',1,'']]], 4 | ['input',['input',['../namespace_d_t_f_l_1_1input.html',1,'DTFL']]], 5 | ['signal',['signal',['../namespace_d_t_f_l_1_1signal.html',1,'DTFL']]], 6 | ['strategy',['strategy',['../namespace_d_t_f_l_1_1strategy.html',1,'DTFL']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/html/search/properties_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['command',['Command',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html#ae43f427bec18e3127ad6804aef7894df',1,'MQL4CSharp::Base::MQL::MQLCommandRequest']]], 4 | ['commandwaiting',['CommandWaiting',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html#ad24a266d216a12137207b7eceff3337e',1,'MQL4CSharp::Base::MQL::MQLCommandRequest']]], 5 | ['csvorders',['csvOrders',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders.html#aa2834764d0fd1ec6191799b5cd5afbac',1,'MQL4CSharp::UserDefined::Input::CSVOrders']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/properties_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['entry',['Entry',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a914e6a1a85a5c1e58bb3952664773aef',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 4 | ['error',['Error',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html#a1e94dc9238d00317ae87ec2ab70cdfbd',1,'MQL4CSharp::Base::MQL::MQLCommandRequest']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/properties_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pair',['Pair',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a082b6c01f6fcd6c86461c2cc2e1b82b2',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 4 | ['parameters',['Parameters',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html#a87d09a533db47f8113c69db21c519ab8',1,'MQL4CSharp::Base::MQL::MQLCommandRequest']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/properties_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['response',['Response',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request.html#ae3f556839c2657587b3f63b65cae2477',1,'MQL4CSharp::Base::MQL::MQLCommandRequest']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/properties_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['setup',['Setup',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a0da2c5b803db69cb595df628a49bd6a7',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 4 | ['stop',['Stop',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#ae11596a92974bbb46b6c5b65a2087882',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/properties_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['takeprofit1',['TakeProfit1',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#ace4e71fedcf4fa49f6a7abe61b27f88a',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 4 | ['takeprofit2',['TakeProfit2',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a373689a4bade5e587415c43ba818629a',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 5 | ['timeframe',['Timeframe',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a610cbb8b988902129534c86428dc749c',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]], 6 | ['traceextension',['TraceExtension',['../classmql4csharp_1_1_logging.html#ab49b06625532dba1d0915de308177adb',1,'mql4csharp::Logging']]], 7 | ['tradeoperation',['TradeOperation',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order.html#a1b429c1a7fd22cd06804e52df85c3e7f',1,'MQL4CSharp::UserDefined::Input::CSVOrder']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/search/search_l.png -------------------------------------------------------------------------------- /docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/search/search_m.png -------------------------------------------------------------------------------- /docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/search/search_r.png -------------------------------------------------------------------------------- /docs/html/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "abcdefghijklmnoprstuvwyz", 4 | 1: "abcdefghilmnoprstuwz", 5 | 2: "dm", 6 | 3: "abcdefjlmnopst", 7 | 4: "abcdefghilmnoprstuwz", 8 | 5: "bcdhilnoprstv", 9 | 6: "acdemost", 10 | 7: "abcdefghiklmnoprstuvwy", 11 | 8: "ceprst" 12 | }; 13 | 14 | var indexSectionNames = 15 | { 16 | 0: "all", 17 | 1: "classes", 18 | 2: "namespaces", 19 | 3: "files", 20 | 4: "functions", 21 | 5: "variables", 22 | 6: "enums", 23 | 7: "enumvalues", 24 | 8: "properties" 25 | }; 26 | 27 | var indexSectionLabels = 28 | { 29 | 0: "All", 30 | 1: "Classes", 31 | 2: "Namespaces", 32 | 3: "Files", 33 | 4: "Functions", 34 | 5: "Variables", 35 | 6: "Enumerations", 36 | 7: "Enumerator", 37 | 8: "Properties" 38 | }; 39 | 40 | -------------------------------------------------------------------------------- /docs/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['buylimit',['BUYLIMIT',['../class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.html#a6efa692edc1be0e1020836ef2e427dfc',1,'MQL4CSharp::Base::Common::SignalResult']]], 4 | ['buymarket',['BUYMARKET',['../class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.html#a51d5a8363939199395487cc8970c6c66',1,'MQL4CSharp::Base::Common::SignalResult']]], 5 | ['buystop',['BUYSTOP',['../class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.html#a8d56e18ee897ae00939c0f34bfe58193',1,'MQL4CSharp::Base::Common::SignalResult']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['close',['close',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#a697d949721e73a59feee6c8ac3e55c95',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['date_5ftz',['DATE_TZ',['../class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy.html#a872117807344958deef2c5ff301029f3',1,'MQL4CSharp::Base::BaseStrategy']]], 4 | ['default_5fchart_5fid',['DEFAULT_CHART_ID',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper.html#a8326e544edd70aca0fa5f0f597505711',1,'MQL4CSharp::Base::MQL::DLLObjectWrapper']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['high',['high',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#a652df363c3618ac213a917032b235664',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ix',['ix',['../class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert.html#a98b5a835bb18c023f5160275efa74619',1,'MQL4CSharp::Base::MQL::MQLExpert']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['neutral',['NEUTRAL',['../class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result.html#a5d0b15ca9065a13a44b4cdcf0db3deb6',1,'MQL4CSharp::Base::Common::SignalResult']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['open',['open',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#afa002cca417ab091e626fcb360af1608',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['piptolerance',['pipTolerance',['../class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss.html#a5bc39c515d36392483ff79b2f00d4495',1,'MQL4CSharp::UserDefined::StopLoss::SRStopLoss']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['real',['real',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#ab94a352b667fd71f11f7d53096ba3f76',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['time',['time',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#ae41ed969d47d81057cf5d3c353aa2758',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['volume',['volume',['../struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info.html#a4909b697563b89b879645dfa5a2a6aba',1,'MQL4CSharp::Base::MQL::MQLExpert::RateInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/splitbar.png -------------------------------------------------------------------------------- /docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/sync_off.png -------------------------------------------------------------------------------- /docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/sync_on.png -------------------------------------------------------------------------------- /docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/tab_a.png -------------------------------------------------------------------------------- /docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/tab_b.png -------------------------------------------------------------------------------- /docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/tab_h.png -------------------------------------------------------------------------------- /docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonseparovic/MQL4CSharp/6ac4ecd2c3e4fe2d2ebfc30b4b225860e4de10d6/docs/html/tab_s.png -------------------------------------------------------------------------------- /docs/latex/Makefile: -------------------------------------------------------------------------------- 1 | all: refman.pdf 2 | 3 | pdf: refman.pdf 4 | 5 | refman.pdf: clean refman.tex 6 | pdflatex refman 7 | makeindex refman.idx 8 | pdflatex refman 9 | latex_count=8 ; \ 10 | while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ 11 | do \ 12 | echo "Rerunning latex...." ;\ 13 | pdflatex refman ;\ 14 | latex_count=`expr $$latex_count - 1` ;\ 15 | done 16 | makeindex refman.idx 17 | pdflatex refman 18 | 19 | 20 | clean: 21 | rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf 22 | -------------------------------------------------------------------------------- /docs/latex/_a_t_r_stop_loss_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_a_t_r_stop_loss_8cs}{}\section{User\+Defined/\+Stop\+Loss/\+A\+T\+R\+Stop\+Loss.cs File Reference} 2 | \label{_a_t_r_stop_loss_8cs}\index{User\+Defined/\+Stop\+Loss/\+A\+T\+R\+Stop\+Loss.\+cs@{User\+Defined/\+Stop\+Loss/\+A\+T\+R\+Stop\+Loss.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss.\+A\+T\+R\+Stop\+Loss} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_assembly_info_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_assembly_info_8cs}{}\section{Properties/\+Assembly\+Info.cs File Reference} 2 | \label{_assembly_info_8cs}\index{Properties/\+Assembly\+Info.\+cs@{Properties/\+Assembly\+Info.\+cs}} 3 | -------------------------------------------------------------------------------- /docs/latex/_base_filter_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_filter_8cs}{}\section{Base/\+Common/\+Base\+Filter.cs File Reference} 2 | \label{_base_filter_8cs}\index{Base/\+Common/\+Base\+Filter.\+cs@{Base/\+Common/\+Base\+Filter.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_filter}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Base\+Filter} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_base_risk_profile_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_risk_profile_8cs}{}\section{Base/\+Common/\+Base\+Risk\+Profile.cs File Reference} 2 | \label{_base_risk_profile_8cs}\index{Base/\+Common/\+Base\+Risk\+Profile.\+cs@{Base/\+Common/\+Base\+Risk\+Profile.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_risk_profile}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Base\+Risk\+Profile} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_base_signal_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_signal_8cs}{}\section{Base/\+Common/\+Base\+Signal.cs File Reference} 2 | \label{_base_signal_8cs}\index{Base/\+Common/\+Base\+Signal.\+cs@{Base/\+Common/\+Base\+Signal.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_signal}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Base\+Signal} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_base_stop_loss_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_stop_loss_8cs}{}\section{Base/\+Common/\+Base\+Stop\+Loss.cs File Reference} 2 | \label{_base_stop_loss_8cs}\index{Base/\+Common/\+Base\+Stop\+Loss.\+cs@{Base/\+Common/\+Base\+Stop\+Loss.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_stop_loss}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Base\+Stop\+Loss} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_base_strategy_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_strategy_8cs}{}\section{Base/\+Common/\+Base\+Strategy.cs File Reference} 2 | \label{_base_strategy_8cs}\index{Base/\+Common/\+Base\+Strategy.\+cs@{Base/\+Common/\+Base\+Strategy.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy}{M\+Q\+L4\+C\+Sharp.\+Base.\+Base\+Strategy} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base}{M\+Q\+L4\+C\+Sharp.\+Base} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_base_take_profit_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_base_take_profit_8cs}{}\section{Base/\+Common/\+Base\+Take\+Profit.cs File Reference} 2 | \label{_base_take_profit_8cs}\index{Base/\+Common/\+Base\+Take\+Profit.\+cs@{Base/\+Common/\+Base\+Take\+Profit.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_base_take_profit}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Base\+Take\+Profit} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_break_even_stop_loss_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_break_even_stop_loss_8cs}{}\section{User\+Defined/\+Stop\+Loss/\+Break\+Even\+Stop\+Loss.cs File Reference} 2 | \label{_break_even_stop_loss_8cs}\index{User\+Defined/\+Stop\+Loss/\+Break\+Even\+Stop\+Loss.\+cs@{User\+Defined/\+Stop\+Loss/\+Break\+Even\+Stop\+Loss.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss.\+Break\+Even\+Stop\+Loss} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_c_s_v_order_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_c_s_v_order_8cs}{}\section{User\+Defined/\+Input/\+C\+S\+V\+Order.cs File Reference} 2 | \label{_c_s_v_order_8cs}\index{User\+Defined/\+Input/\+C\+S\+V\+Order.\+cs@{User\+Defined/\+Input/\+C\+S\+V\+Order.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input.\+C\+S\+V\+Order} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_c_s_v_orders_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_c_s_v_orders_8cs}{}\section{User\+Defined/\+Input/\+C\+S\+V\+Orders.cs File Reference} 2 | \label{_c_s_v_orders_8cs}\index{User\+Defined/\+Input/\+C\+S\+V\+Orders.\+cs@{User\+Defined/\+Input/\+C\+S\+V\+Orders.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input.\+C\+S\+V\+Orders} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_d_l_l_object_wrapper_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_d_l_l_object_wrapper_8cs}{}\section{Base/\+M\+Q\+L/\+D\+L\+L\+Object\+Wrapper.cs File Reference} 2 | \label{_d_l_l_object_wrapper_8cs}\index{Base/\+M\+Q\+L/\+D\+L\+L\+Object\+Wrapper.\+cs@{Base/\+M\+Q\+L/\+D\+L\+L\+Object\+Wrapper.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_d_l_l_object_wrapper}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+D\+L\+L\+Object\+Wrapper} 7 | \begin{DoxyCompactList}\small\item\em This class will be used to keep object refs so D\+LL calls are made to the correct object \end{DoxyCompactList}\end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+QL} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_date_util_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_date_util_8cs}{}\section{Util/\+Date\+Util.cs File Reference} 2 | \label{_date_util_8cs}\index{Util/\+Date\+Util.\+cs@{Util/\+Date\+Util.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{classmqlsharp_1_1_util_1_1_date_util}{mqlsharp.\+Util.\+Date\+Util} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespacemqlsharp_1_1_util}{mqlsharp.\+Util} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_error_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_error_8cs}{}\section{Base/\+Enums/\+Error.cs File Reference} 2 | \label{_error_8cs}\index{Base/\+Enums/\+Error.\+cs@{Base/\+Enums/\+Error.\+cs}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_enums}{M\+Q\+L4\+C\+Sharp.\+Base.\+Enums} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Enumerations} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | enum \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_enums_a413d037ba459734cc2e9f92b0d5c7352}{M\+Q\+L4\+C\+Sharp.\+Base.\+Enums.\+Error} \{ \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_enums_a413d037ba459734cc2e9f92b0d5c7352ab42c88a1a52e2eb9f4e445422ba2cbcf}{M\+Q\+L4\+C\+Sharp.\+Base.\+Enums.\+Error.\+E\+R\+R\+O\+R\+\_\+\+N\+O\+\_\+\+C\+O\+M\+M\+A\+ND} = 1, 12 | \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_enums_a413d037ba459734cc2e9f92b0d5c7352ab85255ede5dd1f0177b070d221e826aa}{M\+Q\+L4\+C\+Sharp.\+Base.\+Enums.\+Error.\+E\+R\+R\+O\+R\+\_\+\+U\+N\+H\+A\+N\+D\+L\+ED} = 2 13 | \} 14 | \end{DoxyCompactItemize} 15 | -------------------------------------------------------------------------------- /docs/latex/_fixed_lots_risk_profile_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_fixed_lots_risk_profile_8cs}{}\section{User\+Defined/\+Risk\+Profile/\+Fixed\+Lots\+Risk\+Profile.cs File Reference} 2 | \label{_fixed_lots_risk_profile_8cs}\index{User\+Defined/\+Risk\+Profile/\+Fixed\+Lots\+Risk\+Profile.\+cs@{User\+Defined/\+Risk\+Profile/\+Fixed\+Lots\+Risk\+Profile.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile.\+Fixed\+Lots\+Risk\+Profile} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_fixed_pip_take_profit_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_fixed_pip_take_profit_8cs}{}\section{User\+Defined/\+Take\+Profit/\+Fixed\+Pip\+Take\+Profit.cs File Reference} 2 | \label{_fixed_pip_take_profit_8cs}\index{User\+Defined/\+Take\+Profit/\+Fixed\+Pip\+Take\+Profit.\+cs@{User\+Defined/\+Take\+Profit/\+Fixed\+Pip\+Take\+Profit.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Take\+Profit.\+Fixed\+Pip\+Take\+Profit} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Take\+Profit} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_j_s_o_n_helper_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_j_s_o_n_helper_8cs}{}\section{Util/\+J\+S\+O\+N\+Helper.cs File Reference} 2 | \label{_j_s_o_n_helper_8cs}\index{Util/\+J\+S\+O\+N\+Helper.\+cs@{Util/\+J\+S\+O\+N\+Helper.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class {\bfseries mql4sharp.\+helpers.\+J\+S\+O\+N\+Helper} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespacemql4sharp_1_1helpers}{mql4sharp.\+helpers} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_logging_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_logging_8cs}{}\section{Logging.\+cs File Reference} 2 | \label{_logging_8cs}\index{Logging.\+cs@{Logging.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{classmql4csharp_1_1_logging}{mql4csharp.\+Logging} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespacemql4csharp}{mql4csharp} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_a_cross_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_a_cross_8cs}{}\section{User\+Defined/\+Signal/\+M\+A\+Cross.cs File Reference} 2 | \label{_m_a_cross_8cs}\index{User\+Defined/\+Signal/\+M\+A\+Cross.\+cs@{User\+Defined/\+Signal/\+M\+A\+Cross.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Signal.\+M\+A\+Cross} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Signal} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_base_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_base_8cs}{}\section{Base/\+M\+Q\+L/\+M\+Q\+L\+Base.cs File Reference} 2 | \label{_m_q_l_base_8cs}\index{Base/\+M\+Q\+L/\+M\+Q\+L\+Base.\+cs@{Base/\+M\+Q\+L/\+M\+Q\+L\+Base.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L\+Base} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base}{M\+Q\+L4\+C\+Sharp.\+Base} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_command_manager_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_command_manager_8cs}{}\section{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Manager.cs File Reference} 2 | \label{_m_q_l_command_manager_8cs}\index{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Manager.\+cs@{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Manager.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_manager}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+M\+Q\+L\+Command\+Manager} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+QL} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_command_request_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_command_request_8cs}{}\section{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Request.cs File Reference} 2 | \label{_m_q_l_command_request_8cs}\index{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Request.\+cs@{Base/\+M\+Q\+L/\+M\+Q\+L\+Command\+Request.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_command_request}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+M\+Q\+L\+Command\+Request} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+QL} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_expert_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_expert_8cs}{}\section{Base/\+M\+Q\+L/\+M\+Q\+L\+Expert.cs File Reference} 2 | \label{_m_q_l_expert_8cs}\index{Base/\+M\+Q\+L/\+M\+Q\+L\+Expert.\+cs@{Base/\+M\+Q\+L/\+M\+Q\+L\+Expert.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+M\+Q\+L\+Expert} 7 | \item 8 | struct \hyperlink{struct_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_expert_1_1_rate_info}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+M\+Q\+L\+Expert.\+Rate\+Info} 9 | \end{DoxyCompactItemize} 10 | \subsection*{Namespaces} 11 | \begin{DoxyCompactItemize} 12 | \item 13 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+QL} 14 | \end{DoxyCompactItemize} 15 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_r_e_s_t_resource_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_r_e_s_t_resource_8cs}{}\section{Base/\+R\+E\+S\+T/\+M\+Q\+L\+R\+E\+S\+T\+Resource.cs File Reference} 2 | \label{_m_q_l_r_e_s_t_resource_8cs}\index{Base/\+R\+E\+S\+T/\+M\+Q\+L\+R\+E\+S\+T\+Resource.\+cs@{Base/\+R\+E\+S\+T/\+M\+Q\+L\+R\+E\+S\+T\+Resource.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource}{M\+Q\+L4\+C\+Sharp.\+Base.\+R\+E\+S\+T.\+M\+Q\+L\+R\+E\+S\+T\+Resource} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t}{M\+Q\+L4\+C\+Sharp.\+Base.\+R\+E\+ST} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_r_e_s_t_strategy_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_r_e_s_t_strategy_8cs}{}\section{User\+Defined/\+Strategy/\+M\+Q\+L\+R\+E\+S\+T\+Strategy.cs File Reference} 2 | \label{_m_q_l_r_e_s_t_strategy_8cs}\index{User\+Defined/\+Strategy/\+M\+Q\+L\+R\+E\+S\+T\+Strategy.\+cs@{User\+Defined/\+Strategy/\+M\+Q\+L\+R\+E\+S\+T\+Strategy.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy.\+M\+Q\+L\+R\+E\+S\+T\+Strategy} 7 | \begin{DoxyCompactList}\small\item\em Attach this one to your chart just to enable the R\+E\+ST A\+PI. It does nothing, but every M\+Q\+L\+Expert has a R\+E\+ST endpoint \end{DoxyCompactList}\end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_m_q_l_thread_pool_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_m_q_l_thread_pool_8cs}{}\section{Base/\+M\+Q\+L/\+M\+Q\+L\+Thread\+Pool.cs File Reference} 2 | \label{_m_q_l_thread_pool_8cs}\index{Base/\+M\+Q\+L/\+M\+Q\+L\+Thread\+Pool.\+cs@{Base/\+M\+Q\+L/\+M\+Q\+L\+Thread\+Pool.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_1_1_m_q_l_thread_pool}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+Q\+L.\+M\+Q\+L\+Thread\+Pool} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+Q\+L4\+C\+Sharp.\+Base.\+M\+QL} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_ma_cross_strategy_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_ma_cross_strategy_8cs}{}\section{User\+Defined/\+Strategy/\+Ma\+Cross\+Strategy.cs File Reference} 2 | \label{_ma_cross_strategy_8cs}\index{User\+Defined/\+Strategy/\+Ma\+Cross\+Strategy.\+cs@{User\+Defined/\+Strategy/\+Ma\+Cross\+Strategy.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy.\+Ma\+Cross\+Strategy} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_manipulation_point_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_manipulation_point_8cs}{}\section{X\+Custom/\+Manipulation\+Point.cs File Reference} 2 | \label{_manipulation_point_8cs}\index{X\+Custom/\+Manipulation\+Point.\+cs@{X\+Custom/\+Manipulation\+Point.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_d_t_f_l_1_1input_1_1_manipulation_point}{D\+T\+F\+L.\+input.\+Manipulation\+Point} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_d_t_f_l_1_1input}{D\+T\+F\+L.\+input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_manipulation_points_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_manipulation_points_8cs}{}\section{X\+Custom/\+Manipulation\+Points.cs File Reference} 2 | \label{_manipulation_points_8cs}\index{X\+Custom/\+Manipulation\+Points.\+cs@{X\+Custom/\+Manipulation\+Points.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_d_t_f_l_1_1input_1_1_manipulation_points}{D\+T\+F\+L.\+input.\+Manipulation\+Points} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_d_t_f_l_1_1input}{D\+T\+F\+L.\+input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_news_close_out_filter_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_news_close_out_filter_8cs}{}\section{User\+Defined/\+Filter/\+News\+Close\+Out\+Filter.cs File Reference} 2 | \label{_news_close_out_filter_8cs}\index{User\+Defined/\+Filter/\+News\+Close\+Out\+Filter.\+cs@{User\+Defined/\+Filter/\+News\+Close\+Out\+Filter.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter.\+News\+Close\+Out\+Filter} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_news_input_filter_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_news_input_filter_8cs}{}\section{User\+Defined/\+Filter/\+News\+Input\+Filter.cs File Reference} 2 | \label{_news_input_filter_8cs}\index{User\+Defined/\+Filter/\+News\+Input\+Filter.\+cs@{User\+Defined/\+Filter/\+News\+Input\+Filter.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter.\+News\+Input\+Filter} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_news_report_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_news_report_8cs}{}\section{User\+Defined/\+Input/\+News\+Report.cs File Reference} 2 | \label{_news_report_8cs}\index{User\+Defined/\+Input/\+News\+Report.\+cs@{User\+Defined/\+Input/\+News\+Report.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_report}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input.\+News\+Report} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_news_reports_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_news_reports_8cs}{}\section{User\+Defined/\+Input/\+News\+Reports.cs File Reference} 2 | \label{_news_reports_8cs}\index{User\+Defined/\+Input/\+News\+Reports.\+cs@{User\+Defined/\+Input/\+News\+Reports.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input.\+News\+Reports} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_percent_risk_profile_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_percent_risk_profile_8cs}{}\section{User\+Defined/\+Risk\+Profile/\+Percent\+Risk\+Profile.cs File Reference} 2 | \label{_percent_risk_profile_8cs}\index{User\+Defined/\+Risk\+Profile/\+Percent\+Risk\+Profile.\+cs@{User\+Defined/\+Risk\+Profile/\+Percent\+Risk\+Profile.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile.\+Percent\+Risk\+Profile} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_s_r_stop_loss_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_s_r_stop_loss_8cs}{}\section{User\+Defined/\+Stop\+Loss/\+S\+R\+Stop\+Loss.cs File Reference} 2 | \label{_s_r_stop_loss_8cs}\index{User\+Defined/\+Stop\+Loss/\+S\+R\+Stop\+Loss.\+cs@{User\+Defined/\+Stop\+Loss/\+S\+R\+Stop\+Loss.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss.\+S\+R\+Stop\+Loss} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_signal_info_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_signal_info_8cs}{}\section{Base/\+Common/\+Signal\+Info.cs File Reference} 2 | \label{_signal_info_8cs}\index{Base/\+Common/\+Signal\+Info.\+cs@{Base/\+Common/\+Signal\+Info.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_info}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Signal\+Info} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_signal_result_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_signal_result_8cs}{}\section{Base/\+Common/\+Signal\+Result.cs File Reference} 2 | \label{_signal_result_8cs}\index{Base/\+Common/\+Signal\+Result.\+cs@{Base/\+Common/\+Signal\+Result.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_signal_result}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Signal\+Result} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_stop_run_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_stop_run_8cs}{}\section{X\+Custom/\+Stop\+Run.cs File Reference} 2 | \label{_stop_run_8cs}\index{X\+Custom/\+Stop\+Run.\+cs@{X\+Custom/\+Stop\+Run.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_d_t_f_l_1_1signal_1_1_stop_run}{D\+T\+F\+L.\+signal.\+Stop\+Run} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_d_t_f_l_1_1signal}{D\+T\+F\+L.\+signal} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_strategy_meta_data_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_strategy_meta_data_8cs}{}\section{Base/\+Common/\+Strategy\+Meta\+Data.cs File Reference} 2 | \label{_strategy_meta_data_8cs}\index{Base/\+Common/\+Strategy\+Meta\+Data.\+cs@{Base/\+Common/\+Strategy\+Meta\+Data.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_common_1_1_strategy_meta_data}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common.\+Strategy\+Meta\+Data} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{M\+Q\+L4\+C\+Sharp.\+Base.\+Common} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs}{}\section{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+036\+C0\+B5\+B-\/1481-\/4323-\/8\+D20-\/8\+F5\+A\+D\+C\+B23\+D92.cs File Reference} 2 | \label{_temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs}\index{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+036\+C0\+B5\+B-\/1481-\/4323-\/8\+D20-\/8\+F5\+A\+D\+C\+B23\+D92.\+cs@{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+036\+C0\+B5\+B-\/1481-\/4323-\/8\+D20-\/8\+F5\+A\+D\+C\+B23\+D92.\+cs}} 3 | -------------------------------------------------------------------------------- /docs/latex/_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs}{}\section{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+5937a670-\/0e60-\/4077-\/877b-\/f7221da3dda1.cs File Reference} 2 | \label{_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs}\index{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+5937a670-\/0e60-\/4077-\/877b-\/f7221da3dda1.\+cs@{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+5937a670-\/0e60-\/4077-\/877b-\/f7221da3dda1.\+cs}} 3 | -------------------------------------------------------------------------------- /docs/latex/_temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs}{}\section{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+\+E7\+A71\+F73-\/0\+F8\+D-\/4\+B9\+B-\/\+B56\+E-\/8\+E70\+B10\+B\+C5\+D3.cs File Reference} 2 | \label{_temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs}\index{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+\+E7\+A71\+F73-\/0\+F8\+D-\/4\+B9\+B-\/\+B56\+E-\/8\+E70\+B10\+B\+C5\+D3.\+cs@{obj/\+Debug/\+Temporary\+Generated\+File\+\_\+\+E7\+A71\+F73-\/0\+F8\+D-\/4\+B9\+B-\/\+B56\+E-\/8\+E70\+B10\+B\+C5\+D3.\+cs}} 3 | -------------------------------------------------------------------------------- /docs/latex/_time_of_day_filter_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_time_of_day_filter_8cs}{}\section{User\+Defined/\+Filter/\+Time\+Of\+Day\+Filter.cs File Reference} 2 | \label{_time_of_day_filter_8cs}\index{User\+Defined/\+Filter/\+Time\+Of\+Day\+Filter.\+cs@{User\+Defined/\+Filter/\+Time\+Of\+Day\+Filter.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter.\+Time\+Of\+Day\+Filter} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/_trailing_stop_loss_8cs.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{_trailing_stop_loss_8cs}{}\section{User\+Defined/\+Stop\+Loss/\+Trailing\+Stop\+Loss.cs File Reference} 2 | \label{_trailing_stop_loss_8cs}\index{User\+Defined/\+Stop\+Loss/\+Trailing\+Stop\+Loss.\+cs@{User\+Defined/\+Stop\+Loss/\+Trailing\+Stop\+Loss.\+cs}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss.\+Trailing\+Stop\+Loss} 7 | \end{DoxyCompactItemize} 8 | \subsection*{Namespaces} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/latex/dir_2d34f7da626cd02ef35bc1da6e2d7a58.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_2d34f7da626cd02ef35bc1da6e2d7a58}{}\section{User\+Defined/\+Take\+Profit Directory Reference} 2 | \label{dir_2d34f7da626cd02ef35bc1da6e2d7a58}\index{User\+Defined/\+Take\+Profit Directory Reference@{User\+Defined/\+Take\+Profit Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_fixed_pip_take_profit_8cs}{Fixed\+Pip\+Take\+Profit.\+cs} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_36c27dc73838f68187b9444c0dd868d9.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_36c27dc73838f68187b9444c0dd868d9}{}\section{User\+Defined/\+Filter Directory Reference} 2 | \label{dir_36c27dc73838f68187b9444c0dd868d9}\index{User\+Defined/\+Filter Directory Reference@{User\+Defined/\+Filter Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_news_close_out_filter_8cs}{News\+Close\+Out\+Filter.\+cs} 7 | \item 8 | file \hyperlink{_news_input_filter_8cs}{News\+Input\+Filter.\+cs} 9 | \item 10 | file \hyperlink{_time_of_day_filter_8cs}{Time\+Of\+Day\+Filter.\+cs} 11 | \end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex/dir_36c8e0a2eb2cf451f5908e88d651e301.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_36c8e0a2eb2cf451f5908e88d651e301}{}\section{Base/\+R\+E\+ST Directory Reference} 2 | \label{dir_36c8e0a2eb2cf451f5908e88d651e301}\index{Base/\+R\+E\+S\+T Directory Reference@{Base/\+R\+E\+S\+T Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_m_q_l_r_e_s_t_resource_8cs}{M\+Q\+L\+R\+E\+S\+T\+Resource.\+cs} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_410b253a5eb152717a820f8e04b67313.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_410b253a5eb152717a820f8e04b67313}{}\section{X\+Custom Directory Reference} 2 | \label{dir_410b253a5eb152717a820f8e04b67313}\index{X\+Custom Directory Reference@{X\+Custom Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_d_t_f_l_8cs}{D\+T\+F\+L.\+cs} 7 | \item 8 | file \hyperlink{_manipulation_point_8cs}{Manipulation\+Point.\+cs} 9 | \item 10 | file \hyperlink{_manipulation_points_8cs}{Manipulation\+Points.\+cs} 11 | \item 12 | file \hyperlink{_stop_run_8cs}{Stop\+Run.\+cs} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/latex/dir_43724e81dd40e09f32417973865cdd64.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_43724e81dd40e09f32417973865cdd64}{}\section{obj Directory Reference} 2 | \label{dir_43724e81dd40e09f32417973865cdd64}\index{obj Directory Reference@{obj Directory Reference}} 3 | \subsection*{Directories} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | directory \hyperlink{dir_a71c3b2ad23b9ff58220dd012d201987}{Debug} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_47a65a7121aa0a930f89cb28527a3ccc.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_47a65a7121aa0a930f89cb28527a3ccc}{}\section{User\+Defined/\+Strategy Directory Reference} 2 | \label{dir_47a65a7121aa0a930f89cb28527a3ccc}\index{User\+Defined/\+Strategy Directory Reference@{User\+Defined/\+Strategy Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_ma_cross_strategy_8cs}{Ma\+Cross\+Strategy.\+cs} 7 | \item 8 | file \hyperlink{_m_q_l_r_e_s_t_strategy_8cs}{M\+Q\+L\+R\+E\+S\+T\+Strategy.\+cs} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/dir_628593db0cdce5a76fb85526ae5aa762.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_628593db0cdce5a76fb85526ae5aa762}{}\section{Base Directory Reference} 2 | \label{dir_628593db0cdce5a76fb85526ae5aa762}\index{Base Directory Reference@{Base Directory Reference}} 3 | \subsection*{Directories} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | directory \hyperlink{dir_b80d8101880334ba15ff5d6819ad8c90}{Common} 7 | \item 8 | directory \hyperlink{dir_60fc22c803f72ca52790a569e5fab485}{Enums} 9 | \item 10 | directory \hyperlink{dir_a3f2c39fcf2a252e967fd938e8ac1c5b}{Exceptions} 11 | \item 12 | directory \hyperlink{dir_8e797e3b249020ae9429fa60e390d1fa}{M\+QL} 13 | \item 14 | directory \hyperlink{dir_36c8e0a2eb2cf451f5908e88d651e301}{R\+E\+ST} 15 | \end{DoxyCompactItemize} 16 | -------------------------------------------------------------------------------- /docs/latex/dir_7f93eef91946896e7ff2fb32b654ef52.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_7f93eef91946896e7ff2fb32b654ef52}{}\section{User\+Defined/\+Stop\+Loss Directory Reference} 2 | \label{dir_7f93eef91946896e7ff2fb32b654ef52}\index{User\+Defined/\+Stop\+Loss Directory Reference@{User\+Defined/\+Stop\+Loss Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_a_t_r_stop_loss_8cs}{A\+T\+R\+Stop\+Loss.\+cs} 7 | \item 8 | file \hyperlink{_break_even_stop_loss_8cs}{Break\+Even\+Stop\+Loss.\+cs} 9 | \item 10 | file \hyperlink{_s_r_stop_loss_8cs}{S\+R\+Stop\+Loss.\+cs} 11 | \item 12 | file \hyperlink{_trailing_stop_loss_8cs}{Trailing\+Stop\+Loss.\+cs} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/latex/dir_8e797e3b249020ae9429fa60e390d1fa.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_8e797e3b249020ae9429fa60e390d1fa}{}\section{Base/\+M\+QL Directory Reference} 2 | \label{dir_8e797e3b249020ae9429fa60e390d1fa}\index{Base/\+M\+Q\+L Directory Reference@{Base/\+M\+Q\+L Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_d_l_l_object_wrapper_8cs}{D\+L\+L\+Object\+Wrapper.\+cs} 7 | \item 8 | file \hyperlink{_m_q_l_base_8cs}{M\+Q\+L\+Base.\+cs} 9 | \item 10 | file \hyperlink{_m_q_l_command_manager_8cs}{M\+Q\+L\+Command\+Manager.\+cs} 11 | \item 12 | file \hyperlink{_m_q_l_command_request_8cs}{M\+Q\+L\+Command\+Request.\+cs} 13 | \item 14 | file \hyperlink{_m_q_l_expert_8cs}{M\+Q\+L\+Expert.\+cs} 15 | \item 16 | file \hyperlink{_m_q_l_thread_pool_8cs}{M\+Q\+L\+Thread\+Pool.\+cs} 17 | \end{DoxyCompactItemize} 18 | -------------------------------------------------------------------------------- /docs/latex/dir_97e053108737862620ce324d993fa434.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_97e053108737862620ce324d993fa434}{}\section{User\+Defined/\+Input Directory Reference} 2 | \label{dir_97e053108737862620ce324d993fa434}\index{User\+Defined/\+Input Directory Reference@{User\+Defined/\+Input Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_c_s_v_order_8cs}{C\+S\+V\+Order.\+cs} 7 | \item 8 | file \hyperlink{_c_s_v_orders_8cs}{C\+S\+V\+Orders.\+cs} 9 | \item 10 | file \hyperlink{_news_report_8cs}{News\+Report.\+cs} 11 | \item 12 | file \hyperlink{_news_reports_8cs}{News\+Reports.\+cs} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/latex/dir_a00775a06164dcb0e5c962d187f9b3b8.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_a00775a06164dcb0e5c962d187f9b3b8}{}\section{User\+Defined Directory Reference} 2 | \label{dir_a00775a06164dcb0e5c962d187f9b3b8}\index{User\+Defined Directory Reference@{User\+Defined Directory Reference}} 3 | \subsection*{Directories} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | directory \hyperlink{dir_36c27dc73838f68187b9444c0dd868d9}{Filter} 7 | \item 8 | directory \hyperlink{dir_97e053108737862620ce324d993fa434}{Input} 9 | \item 10 | directory \hyperlink{dir_bd6cdfbf98e0e7dfa68579dbe2920211}{Risk\+Profile} 11 | \item 12 | directory \hyperlink{dir_c5f017acb9f5dbaf457d983d634fdb68}{Signal} 13 | \item 14 | directory \hyperlink{dir_7f93eef91946896e7ff2fb32b654ef52}{Stop\+Loss} 15 | \item 16 | directory \hyperlink{dir_47a65a7121aa0a930f89cb28527a3ccc}{Strategy} 17 | \item 18 | directory \hyperlink{dir_2d34f7da626cd02ef35bc1da6e2d7a58}{Take\+Profit} 19 | \end{DoxyCompactItemize} 20 | -------------------------------------------------------------------------------- /docs/latex/dir_a3f2c39fcf2a252e967fd938e8ac1c5b.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_a3f2c39fcf2a252e967fd938e8ac1c5b}{}\section{Base/\+Exceptions Directory Reference} 2 | \label{dir_a3f2c39fcf2a252e967fd938e8ac1c5b}\index{Base/\+Exceptions Directory Reference@{Base/\+Exceptions Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_m_q_l_exceptions_8cs}{M\+Q\+L\+Exceptions.\+cs} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_a71c3b2ad23b9ff58220dd012d201987.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_a71c3b2ad23b9ff58220dd012d201987}{}\section{obj/\+Debug Directory Reference} 2 | \label{dir_a71c3b2ad23b9ff58220dd012d201987}\index{obj/\+Debug Directory Reference@{obj/\+Debug Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_temporary_generated_file__036_c0_b5_b-1481-4323-8_d20-8_f5_a_d_c_b23_d92_8cs}{Temporary\+Generated\+File\+\_\+036\+C0\+B5\+B-\/1481-\/4323-\/8\+D20-\/8\+F5\+A\+D\+C\+B23\+D92.\+cs} 7 | \item 8 | file \hyperlink{_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs}{Temporary\+Generated\+File\+\_\+5937a670-\/0e60-\/4077-\/877b-\/f7221da3dda1.\+cs} 9 | \item 10 | file \hyperlink{_temporary_generated_file___e7_a71_f73-0_f8_d-4_b9_b-_b56_e-8_e70_b10_b_c5_d3_8cs}{Temporary\+Generated\+File\+\_\+\+E7\+A71\+F73-\/0\+F8\+D-\/4\+B9\+B-\/\+B56\+E-\/8\+E70\+B10\+B\+C5\+D3.\+cs} 11 | \end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex/dir_b80d8101880334ba15ff5d6819ad8c90.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_b80d8101880334ba15ff5d6819ad8c90}{}\section{Base/\+Common Directory Reference} 2 | \label{dir_b80d8101880334ba15ff5d6819ad8c90}\index{Base/\+Common Directory Reference@{Base/\+Common Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_base_filter_8cs}{Base\+Filter.\+cs} 7 | \item 8 | file \hyperlink{_base_risk_profile_8cs}{Base\+Risk\+Profile.\+cs} 9 | \item 10 | file \hyperlink{_base_signal_8cs}{Base\+Signal.\+cs} 11 | \item 12 | file \hyperlink{_base_stop_loss_8cs}{Base\+Stop\+Loss.\+cs} 13 | \item 14 | file \hyperlink{_base_strategy_8cs}{Base\+Strategy.\+cs} 15 | \item 16 | file \hyperlink{_base_take_profit_8cs}{Base\+Take\+Profit.\+cs} 17 | \item 18 | file \hyperlink{_signal_info_8cs}{Signal\+Info.\+cs} 19 | \item 20 | file \hyperlink{_signal_info_key_8cs}{Signal\+Info\+Key.\+cs} 21 | \item 22 | file \hyperlink{_signal_result_8cs}{Signal\+Result.\+cs} 23 | \item 24 | file \hyperlink{_strategy_meta_data_8cs}{Strategy\+Meta\+Data.\+cs} 25 | \end{DoxyCompactItemize} 26 | -------------------------------------------------------------------------------- /docs/latex/dir_bd6cdfbf98e0e7dfa68579dbe2920211.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_bd6cdfbf98e0e7dfa68579dbe2920211}{}\section{User\+Defined/\+Risk\+Profile Directory Reference} 2 | \label{dir_bd6cdfbf98e0e7dfa68579dbe2920211}\index{User\+Defined/\+Risk\+Profile Directory Reference@{User\+Defined/\+Risk\+Profile Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_fixed_lots_risk_profile_8cs}{Fixed\+Lots\+Risk\+Profile.\+cs} 7 | \item 8 | file \hyperlink{_percent_risk_profile_8cs}{Percent\+Risk\+Profile.\+cs} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/dir_c5f017acb9f5dbaf457d983d634fdb68.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_c5f017acb9f5dbaf457d983d634fdb68}{}\section{User\+Defined/\+Signal Directory Reference} 2 | \label{dir_c5f017acb9f5dbaf457d983d634fdb68}\index{User\+Defined/\+Signal Directory Reference@{User\+Defined/\+Signal Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_m_a_cross_8cs}{M\+A\+Cross.\+cs} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_d051c76eebdc544d9c3d734575641c72.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_d051c76eebdc544d9c3d734575641c72}{}\section{Properties Directory Reference} 2 | \label{dir_d051c76eebdc544d9c3d734575641c72}\index{Properties Directory Reference@{Properties Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_assembly_info_8cs}{Assembly\+Info.\+cs} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/dir_d4f7a754e06480f800a6fab4b04999ce.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_d4f7a754e06480f800a6fab4b04999ce}{}\section{Util Directory Reference} 2 | \label{dir_d4f7a754e06480f800a6fab4b04999ce}\index{Util Directory Reference@{Util Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{_date_util_8cs}{Date\+Util.\+cs} 7 | \item 8 | file \hyperlink{_j_s_o_n_helper_8cs}{J\+S\+O\+N\+Helper.\+cs} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/make.bat: -------------------------------------------------------------------------------- 1 | set Dir_Old=%cd% 2 | cd /D %~dp0 3 | 4 | del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf 5 | 6 | pdflatex refman 7 | echo ---- 8 | makeindex refman.idx 9 | echo ---- 10 | pdflatex refman 11 | 12 | setlocal enabledelayedexpansion 13 | set count=8 14 | :repeat 15 | set content=X 16 | for /F "tokens=*" %%T in ( 'findstr /C:"Rerun LaTeX" refman.log' ) do set content="%%~T" 17 | if !content! == X for /F "tokens=*" %%T in ( 'findstr /C:"Rerun to get cross-references right" refman.log' ) do set content="%%~T" 18 | if !content! == X goto :skip 19 | set /a count-=1 20 | if !count! EQU 0 goto :skip 21 | 22 | echo ---- 23 | pdflatex refman 24 | goto :repeat 25 | :skip 26 | endlocal 27 | makeindex refman.idx 28 | pdflatex refman 29 | cd /D %Dir_Old% 30 | set Dir_Old= 31 | -------------------------------------------------------------------------------- /docs/latex/namespace_d_t_f_l.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_d_t_f_l}{}\section{D\+T\+FL Namespace Reference} 2 | \label{namespace_d_t_f_l}\index{D\+T\+FL@{D\+T\+FL}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespace_d_t_f_l_1_1input}{input} 7 | \item 8 | namespace \hyperlink{namespace_d_t_f_l_1_1signal}{signal} 9 | \item 10 | namespace \hyperlink{namespace_d_t_f_l_1_1strategy}{strategy} 11 | \end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex/namespace_d_t_f_l_1_1input.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_d_t_f_l_1_1input}{}\section{D\+T\+F\+L.\+input Namespace Reference} 2 | \label{namespace_d_t_f_l_1_1input}\index{D\+T\+F\+L.\+input@{D\+T\+F\+L.\+input}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_d_t_f_l_1_1input_1_1_manipulation_point}{Manipulation\+Point} 7 | \item 8 | class \hyperlink{class_d_t_f_l_1_1input_1_1_manipulation_points}{Manipulation\+Points} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/namespace_d_t_f_l_1_1signal.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_d_t_f_l_1_1signal}{}\section{D\+T\+F\+L.\+signal Namespace Reference} 2 | \label{namespace_d_t_f_l_1_1signal}\index{D\+T\+F\+L.\+signal@{D\+T\+F\+L.\+signal}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_d_t_f_l_1_1signal_1_1_stop_run}{Stop\+Run} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp}{}\section{M\+Q\+L4\+C\+Sharp Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp}\index{M\+Q\+L4\+C\+Sharp@{M\+Q\+L4\+C\+Sharp}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base}{Base} 7 | \item 8 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined}{User\+Defined} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_base.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_base}{}\section{M\+Q\+L4\+C\+Sharp.\+Base Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_base}\index{M\+Q\+L4\+C\+Sharp.\+Base@{M\+Q\+L4\+C\+Sharp.\+Base}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_common}{Common} 7 | \item 8 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_enums}{Enums} 9 | \item 10 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_exceptions}{Exceptions} 11 | \item 12 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_m_q_l}{M\+QL} 13 | \item 14 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t}{R\+E\+ST} 15 | \end{DoxyCompactItemize} 16 | \subsection*{Classes} 17 | \begin{DoxyCompactItemize} 18 | \item 19 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_base_strategy}{Base\+Strategy} 20 | \item 21 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_m_q_l_base}{M\+Q\+L\+Base} 22 | \end{DoxyCompactItemize} 23 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t}{}\section{M\+Q\+L4\+C\+Sharp.\+Base.\+R\+E\+ST Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t}\index{M\+Q\+L4\+C\+Sharp.\+Base.\+R\+E\+ST@{M\+Q\+L4\+C\+Sharp.\+Base.\+R\+E\+ST}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_base_1_1_r_e_s_t_1_1_m_q_l_r_e_s_t_resource}{M\+Q\+L\+R\+E\+S\+T\+Resource} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined@{M\+Q\+L4\+C\+Sharp.\+User\+Defined}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}{Filter} 7 | \item 8 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{Input} 9 | \item 10 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile}{Risk\+Profile} 11 | \item 12 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal}{Signal} 13 | \item 14 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{Stop\+Loss} 15 | \item 16 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy}{Strategy} 17 | \item 18 | namespace \hyperlink{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit}{Take\+Profit} 19 | \end{DoxyCompactItemize} 20 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_filter}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Filter}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_close_out_filter}{News\+Close\+Out\+Filter} 7 | \item 8 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_news_input_filter}{News\+Input\+Filter} 9 | \item 10 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_filter_1_1_time_of_day_filter}{Time\+Of\+Day\+Filter} 11 | \end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_input}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Input}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_order}{C\+S\+V\+Order} 7 | \item 8 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_c_s_v_orders}{C\+S\+V\+Orders} 9 | \item 10 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_report}{News\+Report} 11 | \item 12 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_input_1_1_news_reports}{News\+Reports} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Risk\+Profile}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_fixed_lots_risk_profile}{Fixed\+Lots\+Risk\+Profile} 7 | \item 8 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_risk_profile_1_1_percent_risk_profile}{Percent\+Risk\+Profile} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Signal Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_signal}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Signal@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Signal}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_signal_1_1_m_a_cross}{M\+A\+Cross} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Stop\+Loss}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_a_t_r_stop_loss}{A\+T\+R\+Stop\+Loss} 7 | \item 8 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_break_even_stop_loss}{Break\+Even\+Stop\+Loss} 9 | \item 10 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_s_r_stop_loss}{S\+R\+Stop\+Loss} 11 | \item 12 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_stop_loss_1_1_trailing_stop_loss}{Trailing\+Stop\+Loss} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Strategy}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_ma_cross_strategy}{Ma\+Cross\+Strategy} 7 | \item 8 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_strategy_1_1_m_q_l_r_e_s_t_strategy}{M\+Q\+L\+R\+E\+S\+T\+Strategy} 9 | \begin{DoxyCompactList}\small\item\em Attach this one to your chart just to enable the R\+E\+ST A\+PI. It does nothing, but every M\+Q\+L\+Expert has a R\+E\+ST endpoint \end{DoxyCompactList}\end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/latex/namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit}{}\section{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Take\+Profit Namespace Reference} 2 | \label{namespace_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit}\index{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Take\+Profit@{M\+Q\+L4\+C\+Sharp.\+User\+Defined.\+Take\+Profit}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_m_q_l4_c_sharp_1_1_user_defined_1_1_take_profit_1_1_fixed_pip_take_profit}{Fixed\+Pip\+Take\+Profit} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespacemql4csharp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespacemql4csharp}{}\section{mql4csharp Namespace Reference} 2 | \label{namespacemql4csharp}\index{mql4csharp@{mql4csharp}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{classmql4csharp_1_1_logging}{Logging} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespacemql4sharp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespacemql4sharp}{}\section{mql4sharp Namespace Reference} 2 | \label{namespacemql4sharp}\index{mql4sharp@{mql4sharp}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespacemql4sharp_1_1helpers}{helpers} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespacemql4sharp_1_1helpers.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespacemql4sharp_1_1helpers}{}\section{mql4sharp.\+helpers Namespace Reference} 2 | \label{namespacemql4sharp_1_1helpers}\index{mql4sharp.\+helpers@{mql4sharp.\+helpers}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class {\bfseries J\+S\+O\+N\+Helper} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespacemqlsharp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespacemqlsharp}{}\section{mqlsharp Namespace Reference} 2 | \label{namespacemqlsharp}\index{mqlsharp@{mqlsharp}} 3 | \subsection*{Namespaces} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | namespace \hyperlink{namespacemqlsharp_1_1_util}{Util} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/latex/namespacemqlsharp_1_1_util.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespacemqlsharp_1_1_util}{}\section{mqlsharp.\+Util Namespace Reference} 2 | \label{namespacemqlsharp_1_1_util}\index{mqlsharp.\+Util@{mqlsharp.\+Util}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{classmqlsharp_1_1_util_1_1_date_util}{Date\+Util} 7 | \end{DoxyCompactItemize} 8 | --------------------------------------------------------------------------------