├── .fvm └── fvm_config.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── price_action_orders │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── installers └── macos │ ├── build_installer.sh │ └── dmg_creator │ ├── config.json │ └── pao.icns ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── core │ ├── error │ │ ├── exceptions.dart │ │ └── failures.dart │ ├── extensions │ │ └── decimal_extension.dart │ ├── globals │ │ ├── constants.dart │ │ ├── enums.dart │ │ └── variables.dart │ ├── usecases │ │ └── usecase.dart │ └── utils │ │ ├── datasource_utils.dart │ │ ├── enum_functions.dart │ │ └── formatters.dart ├── data │ ├── datasources │ │ ├── market_datasource.dart │ │ ├── trade_datasource.dart │ │ └── user_datasource.dart │ ├── models │ │ ├── api_access_model.dart │ │ ├── balance_model.dart │ │ ├── bookticker_model.dart │ │ ├── exchange_info_model.dart │ │ ├── exchange_symbol_info_model.dart │ │ ├── order_cancel_request_model.dart │ │ ├── order_cancel_response_model.dart │ │ ├── order_fill_model.dart │ │ ├── order_model.dart │ │ ├── order_request_limit_model.dart │ │ ├── order_request_market_model.dart │ │ ├── order_request_stop_limit_model.dart │ │ ├── order_response_full_model.dart │ │ ├── ticker_model.dart │ │ ├── ticker_stats_model.dart │ │ ├── userdata_model.dart │ │ ├── userdata_payload_accountupdate_model.dart │ │ └── userdata_payload_orderupdate_model.dart │ └── repositories │ │ ├── market_repository_impl.dart │ │ ├── trade_repository_impl.dart │ │ └── user_repository_impl.dart ├── domain │ ├── entities │ │ ├── api_access.dart │ │ ├── balance.dart │ │ ├── bookticker.dart │ │ ├── exchange_info.dart │ │ ├── exchange_symbol_info.dart │ │ ├── order.dart │ │ ├── order_cancel_request.dart │ │ ├── order_cancel_response.dart │ │ ├── order_fill.dart │ │ ├── order_request.dart │ │ ├── order_request_limit.dart │ │ ├── order_request_market.dart │ │ ├── order_request_stop_limit.dart │ │ ├── order_response.dart │ │ ├── order_response_full.dart │ │ ├── ticker.dart │ │ ├── ticker_stats.dart │ │ ├── trade.dart │ │ ├── userdata.dart │ │ ├── userdata_payload.dart │ │ ├── userdata_payload_accountupdate.dart │ │ └── userdata_payload_orderupdate.dart │ ├── repositories │ │ ├── market_respository.dart │ │ ├── trade_repository.dart │ │ └── user_repository.dart │ └── usecases │ │ ├── market_get_bookticker_stream_uc.dart │ │ ├── market_get_exchangeinfo_uc.dart │ │ ├── market_get_tickerstats_stream_uc.dart │ │ ├── trade_cancel_order_uc.dart │ │ ├── trade_post_order_uc.dart │ │ ├── user_check_account_status_uc.dart │ │ ├── user_clear_api_access_uc.dart │ │ ├── user_get_accountinfo_uc.dart │ │ ├── user_get_api_access_uc.dart │ │ ├── user_get_last_ticker_uc.dart │ │ ├── user_get_open_orders_uc.dart │ │ ├── user_get_userdata_stream_uc.dart │ │ ├── user_set_last_ticker_uc.dart │ │ └── user_store_api_access_uc.dart ├── main.dart ├── presentation │ ├── logic │ │ ├── accountinfo_state.dart │ │ ├── accountinfo_state_notifier.dart │ │ ├── auth_state.dart │ │ ├── auth_state_notifier.dart │ │ ├── bookticker_state.dart │ │ ├── bookticker_state_notifier.dart │ │ ├── exchangeinfo_state.dart │ │ ├── exchangeinfo_state_notifier.dart │ │ ├── orders_state.dart │ │ ├── orders_state_notifier.dart │ │ ├── state_handler.dart │ │ ├── ticker_state.dart │ │ ├── ticker_state_notifier.dart │ │ ├── tickerstats_state.dart │ │ ├── tickerstats_state_notifier.dart │ │ ├── trade_state.dart │ │ ├── trade_state_notifier.dart │ │ └── userdata_stream.dart │ ├── screens │ │ ├── auth │ │ │ ├── _screen.dart │ │ │ ├── access_section │ │ │ │ └── access_form.dart │ │ │ └── auth_access_section.dart │ │ └── home │ │ │ ├── _screen.dart │ │ │ ├── controls_section │ │ │ ├── popup_manager.dart │ │ │ ├── spot_balances.dart │ │ │ ├── trade_panel.dart │ │ │ └── widgets │ │ │ │ ├── default_trade_form_field.dart │ │ │ │ ├── form_field_amount.dart │ │ │ │ ├── form_field_price.dart │ │ │ │ ├── form_field_stop.dart │ │ │ │ ├── form_field_total.dart │ │ │ │ ├── limit_board.dart │ │ │ │ ├── market_board.dart │ │ │ │ ├── market_buy_form.dart │ │ │ │ ├── market_sell_form.dart │ │ │ │ ├── popup_dialog_limit.dart │ │ │ │ ├── popup_dialog_market.dart │ │ │ │ ├── popup_dialog_stop_limit.dart │ │ │ │ ├── popup_row_division.dart │ │ │ │ ├── popup_row_division_status.dart │ │ │ │ ├── stop_limit_board.dart │ │ │ │ ├── stop_limit_form.dart │ │ │ │ └── trade_form_header.dart │ │ │ ├── home_controls_section.dart │ │ │ ├── home_market_section.dart │ │ │ ├── home_orders_section.dart │ │ │ ├── market_section │ │ │ ├── bookticker.dart │ │ │ ├── market_header.dart │ │ │ └── widgets │ │ │ │ ├── current_ticker.dart │ │ │ │ ├── input_symbol.dart │ │ │ │ ├── ticker_stats.dart │ │ │ │ ├── ticker_stats_change_info.dart │ │ │ │ └── ticker_stats_info.dart │ │ │ └── orders_section │ │ │ ├── open_orders_wall.dart │ │ │ ├── order_history_wall.dart │ │ │ ├── trade_history_wall.dart │ │ │ └── widgets │ │ │ ├── wall_table.dart │ │ │ ├── wall_table_cell.dart │ │ │ ├── wall_table_empty.dart │ │ │ └── wall_table_row.dart │ └── shared │ │ ├── colors.dart │ │ ├── sizes.dart │ │ ├── themes │ │ └── default_theme.dart │ │ └── widgets │ │ ├── loading_widget.dart │ │ ├── reload_widget.dart │ │ └── tab_selector.dart └── providers.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test ├── attachments │ ├── api_access.json │ ├── attachment_reader.dart │ ├── balance.json │ ├── balance_from_stream.json │ ├── bookticker.json │ ├── cancel_order_response.json │ ├── exchange_info.json │ ├── exchange_symbol_info.json │ ├── listen_key.json │ ├── open_orders.json │ ├── order.json │ ├── order_fill.json │ ├── order_response_full.json │ ├── order_response_full_limit.json │ ├── order_response_full_market.json │ ├── order_response_full_stop_limit.json │ ├── ticker.json │ ├── ticker_stats.json │ ├── userdata.json │ ├── userdata_payload_accountupdate.json │ └── userdata_payload_orderupdate.json ├── data │ ├── datasources │ │ ├── market_datasource_test.dart │ │ ├── market_datasource_test.mocks.dart │ │ ├── trade_datasource_test.dart │ │ ├── trade_datasource_test.mocks.dart │ │ ├── user_datasource_test.dart │ │ └── user_datasource_test.mocks.dart │ ├── models │ │ ├── api_access_model_test.dart │ │ ├── balance_model_test.dart │ │ ├── bookticker_model_test.dart │ │ ├── exchange_info_model_test.dart │ │ ├── exchange_symbol_info_model_test.dart │ │ ├── order_cancel_request_model_test.dart │ │ ├── order_cancel_response_model_test.dart │ │ ├── order_fill_model_test.dart │ │ ├── order_model_test.dart │ │ ├── order_request_limit_model_test.dart │ │ ├── order_request_market_model_test.dart │ │ ├── order_request_stop_limit_model_test.dart │ │ ├── order_response_full_model_test.dart │ │ ├── ticker_model_test.dart │ │ ├── ticker_stats_model_test.dart │ │ ├── userdata_model_test.dart │ │ ├── userdata_payload_accountupdate_model_test.dart │ │ └── userdata_payload_orderupdate_model_test.dart │ └── repositories │ │ ├── market_repository_impl_test.dart │ │ ├── market_repository_impl_test.mocks.dart │ │ ├── trade_repository_impl_test.dart │ │ ├── trade_repository_impl_test.mocks.dart │ │ ├── user_repository_impl_test.dart │ │ └── user_repository_impl_test.mocks.dart ├── domain │ └── usecases │ │ ├── market_get_bookticker_stream_uc_test.dart │ │ ├── market_get_bookticker_stream_uc_test.mocks.dart │ │ ├── market_get_exchangeinfo_uc_test.dart │ │ ├── market_get_exchangeinfo_uc_test.mocks.dart │ │ ├── market_get_tickerstats_stream_uc_test.dart │ │ ├── market_get_tickerstats_stream_uc_test.mocks.dart │ │ ├── trade_cancel_order_uc_test.dart │ │ ├── trade_cancel_order_uc_test.mocks.dart │ │ ├── trade_post_order_uc_test.dart │ │ ├── trade_post_order_uc_test.mocks.dart │ │ ├── user_check_account_status_uc_test.dart │ │ ├── user_check_account_status_uc_test.mocks.dart │ │ ├── user_clear_api_access_uc_test.dart │ │ ├── user_clear_api_access_uc_test.mocks.dart │ │ ├── user_get_accountinfo_uc_test.dart │ │ ├── user_get_accountinfo_uc_test.mocks.dart │ │ ├── user_get_api_access_uc_test.dart │ │ ├── user_get_api_access_uc_test.mocks.dart │ │ ├── user_get_last_ticker_uc_test.dart │ │ ├── user_get_last_ticker_uc_test.mocks.dart │ │ ├── user_get_open_orders_uc_test.dart │ │ ├── user_get_open_orders_uc_test.mocks.dart │ │ ├── user_get_userdata_stream_uc_test.dart │ │ ├── user_get_userdata_stream_uc_test.mocks.dart │ │ ├── user_set_last_ticker_uc_test.dart │ │ ├── user_set_last_ticker_uc_test.mocks.dart │ │ ├── user_store_api_access_uc_test.dart │ │ └── user_store_api_access_uc_test.mocks.dart └── presentation │ └── logic │ ├── accountinfo_state_notifier_test.dart │ ├── accountinfo_state_notifier_test.mocks.dart │ ├── auth_state_notifier_test.dart │ ├── auth_state_notifier_test.mocks.dart │ ├── bookticker_state_notifier_test.dart │ ├── bookticker_state_notifier_test.mocks.dart │ ├── exchangeinfo_state_notifier_test.dart │ ├── exchangeinfo_state_notifier_test.mocks.dart │ ├── orders_state_notifier_test.dart │ ├── orders_state_notifier_test.mocks.dart │ ├── state_handler_test.dart │ ├── state_handler_test.mocks.dart │ ├── ticker_state_notifier_test.dart │ ├── ticker_state_notifier_test.mocks.dart │ ├── tickerstats_state_notifier_test.dart │ ├── tickerstats_state_notifier_test.mocks.dart │ ├── trade_state_notifier_test.dart │ ├── trade_state_notifier_test.mocks.dart │ ├── userdata_stream_test.dart │ └── userdata_stream_test.mocks.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── run_loop.cpp ├── run_loop.h ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/price_action_orders/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/kotlin/com/example/price_action_orders/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /installers/macos/build_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/installers/macos/build_installer.sh -------------------------------------------------------------------------------- /installers/macos/dmg_creator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/installers/macos/dmg_creator/config.json -------------------------------------------------------------------------------- /installers/macos/dmg_creator/pao.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/installers/macos/dmg_creator/pao.icns -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/core/error/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/error/exceptions.dart -------------------------------------------------------------------------------- /lib/core/error/failures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/error/failures.dart -------------------------------------------------------------------------------- /lib/core/extensions/decimal_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/extensions/decimal_extension.dart -------------------------------------------------------------------------------- /lib/core/globals/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/globals/constants.dart -------------------------------------------------------------------------------- /lib/core/globals/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/globals/enums.dart -------------------------------------------------------------------------------- /lib/core/globals/variables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/globals/variables.dart -------------------------------------------------------------------------------- /lib/core/usecases/usecase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/usecases/usecase.dart -------------------------------------------------------------------------------- /lib/core/utils/datasource_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/utils/datasource_utils.dart -------------------------------------------------------------------------------- /lib/core/utils/enum_functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/utils/enum_functions.dart -------------------------------------------------------------------------------- /lib/core/utils/formatters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/core/utils/formatters.dart -------------------------------------------------------------------------------- /lib/data/datasources/market_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/datasources/market_datasource.dart -------------------------------------------------------------------------------- /lib/data/datasources/trade_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/datasources/trade_datasource.dart -------------------------------------------------------------------------------- /lib/data/datasources/user_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/datasources/user_datasource.dart -------------------------------------------------------------------------------- /lib/data/models/api_access_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/api_access_model.dart -------------------------------------------------------------------------------- /lib/data/models/balance_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/balance_model.dart -------------------------------------------------------------------------------- /lib/data/models/bookticker_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/bookticker_model.dart -------------------------------------------------------------------------------- /lib/data/models/exchange_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/exchange_info_model.dart -------------------------------------------------------------------------------- /lib/data/models/exchange_symbol_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/exchange_symbol_info_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_cancel_request_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_cancel_request_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_cancel_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_cancel_response_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_fill_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_fill_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_request_limit_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_request_limit_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_request_market_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_request_market_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_request_stop_limit_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_request_stop_limit_model.dart -------------------------------------------------------------------------------- /lib/data/models/order_response_full_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/order_response_full_model.dart -------------------------------------------------------------------------------- /lib/data/models/ticker_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/ticker_model.dart -------------------------------------------------------------------------------- /lib/data/models/ticker_stats_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/ticker_stats_model.dart -------------------------------------------------------------------------------- /lib/data/models/userdata_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/userdata_model.dart -------------------------------------------------------------------------------- /lib/data/models/userdata_payload_accountupdate_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/userdata_payload_accountupdate_model.dart -------------------------------------------------------------------------------- /lib/data/models/userdata_payload_orderupdate_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/models/userdata_payload_orderupdate_model.dart -------------------------------------------------------------------------------- /lib/data/repositories/market_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/repositories/market_repository_impl.dart -------------------------------------------------------------------------------- /lib/data/repositories/trade_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/repositories/trade_repository_impl.dart -------------------------------------------------------------------------------- /lib/data/repositories/user_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/data/repositories/user_repository_impl.dart -------------------------------------------------------------------------------- /lib/domain/entities/api_access.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/api_access.dart -------------------------------------------------------------------------------- /lib/domain/entities/balance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/balance.dart -------------------------------------------------------------------------------- /lib/domain/entities/bookticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/bookticker.dart -------------------------------------------------------------------------------- /lib/domain/entities/exchange_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/exchange_info.dart -------------------------------------------------------------------------------- /lib/domain/entities/exchange_symbol_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/exchange_symbol_info.dart -------------------------------------------------------------------------------- /lib/domain/entities/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_cancel_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_cancel_request.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_cancel_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_cancel_response.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_fill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_fill.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_request.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_request_limit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_request_limit.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_request_market.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_request_market.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_request_stop_limit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_request_stop_limit.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_response.dart -------------------------------------------------------------------------------- /lib/domain/entities/order_response_full.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/order_response_full.dart -------------------------------------------------------------------------------- /lib/domain/entities/ticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/ticker.dart -------------------------------------------------------------------------------- /lib/domain/entities/ticker_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/ticker_stats.dart -------------------------------------------------------------------------------- /lib/domain/entities/trade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/trade.dart -------------------------------------------------------------------------------- /lib/domain/entities/userdata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/userdata.dart -------------------------------------------------------------------------------- /lib/domain/entities/userdata_payload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/userdata_payload.dart -------------------------------------------------------------------------------- /lib/domain/entities/userdata_payload_accountupdate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/userdata_payload_accountupdate.dart -------------------------------------------------------------------------------- /lib/domain/entities/userdata_payload_orderupdate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/entities/userdata_payload_orderupdate.dart -------------------------------------------------------------------------------- /lib/domain/repositories/market_respository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/repositories/market_respository.dart -------------------------------------------------------------------------------- /lib/domain/repositories/trade_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/repositories/trade_repository.dart -------------------------------------------------------------------------------- /lib/domain/repositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/repositories/user_repository.dart -------------------------------------------------------------------------------- /lib/domain/usecases/market_get_bookticker_stream_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/market_get_bookticker_stream_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/market_get_exchangeinfo_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/market_get_exchangeinfo_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/market_get_tickerstats_stream_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/market_get_tickerstats_stream_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/trade_cancel_order_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/trade_cancel_order_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/trade_post_order_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/trade_post_order_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_check_account_status_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_check_account_status_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_clear_api_access_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_clear_api_access_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_get_accountinfo_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_get_accountinfo_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_get_api_access_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_get_api_access_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_get_last_ticker_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_get_last_ticker_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_get_open_orders_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_get_open_orders_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_get_userdata_stream_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_get_userdata_stream_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_set_last_ticker_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_set_last_ticker_uc.dart -------------------------------------------------------------------------------- /lib/domain/usecases/user_store_api_access_uc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/domain/usecases/user_store_api_access_uc.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentation/logic/accountinfo_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/accountinfo_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/accountinfo_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/accountinfo_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/auth_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/auth_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/auth_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/bookticker_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/bookticker_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/bookticker_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/bookticker_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/exchangeinfo_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/exchangeinfo_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/exchangeinfo_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/exchangeinfo_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/orders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/orders_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/orders_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/orders_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/state_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/state_handler.dart -------------------------------------------------------------------------------- /lib/presentation/logic/ticker_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/ticker_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/ticker_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/ticker_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/tickerstats_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/tickerstats_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/tickerstats_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/tickerstats_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/trade_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/trade_state.dart -------------------------------------------------------------------------------- /lib/presentation/logic/trade_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/trade_state_notifier.dart -------------------------------------------------------------------------------- /lib/presentation/logic/userdata_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/logic/userdata_stream.dart -------------------------------------------------------------------------------- /lib/presentation/screens/auth/_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/auth/_screen.dart -------------------------------------------------------------------------------- /lib/presentation/screens/auth/access_section/access_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/auth/access_section/access_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/auth/auth_access_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/auth/auth_access_section.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/_screen.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/popup_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/popup_manager.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/spot_balances.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/spot_balances.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/trade_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/trade_panel.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/default_trade_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/default_trade_form_field.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/form_field_amount.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/form_field_amount.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/form_field_price.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/form_field_price.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/form_field_stop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/form_field_stop.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/form_field_total.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/form_field_total.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/limit_board.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/limit_board.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/market_board.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/market_board.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/market_buy_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/market_buy_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/market_sell_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/market_sell_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/popup_dialog_limit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/popup_dialog_limit.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/popup_dialog_market.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/popup_dialog_market.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/popup_dialog_stop_limit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/popup_dialog_stop_limit.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/popup_row_division.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/popup_row_division.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/popup_row_division_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/popup_row_division_status.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/stop_limit_board.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/stop_limit_board.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/stop_limit_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/stop_limit_form.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/controls_section/widgets/trade_form_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/controls_section/widgets/trade_form_header.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/home_controls_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/home_controls_section.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/home_market_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/home_market_section.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/home_orders_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/home_orders_section.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/bookticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/bookticker.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/market_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/market_header.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/widgets/current_ticker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/widgets/current_ticker.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/widgets/input_symbol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/widgets/input_symbol.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/widgets/ticker_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/widgets/ticker_stats.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/widgets/ticker_stats_change_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/widgets/ticker_stats_change_info.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/market_section/widgets/ticker_stats_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/market_section/widgets/ticker_stats_info.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/open_orders_wall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/open_orders_wall.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/order_history_wall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/order_history_wall.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/trade_history_wall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/trade_history_wall.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/widgets/wall_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/widgets/wall_table.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/widgets/wall_table_cell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/widgets/wall_table_cell.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/widgets/wall_table_empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/widgets/wall_table_empty.dart -------------------------------------------------------------------------------- /lib/presentation/screens/home/orders_section/widgets/wall_table_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/screens/home/orders_section/widgets/wall_table_row.dart -------------------------------------------------------------------------------- /lib/presentation/shared/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/shared/colors.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sizes.dart: -------------------------------------------------------------------------------- 1 | const double SECTION_PADDING_ALL = 10; 2 | -------------------------------------------------------------------------------- /lib/presentation/shared/themes/default_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/shared/themes/default_theme.dart -------------------------------------------------------------------------------- /lib/presentation/shared/widgets/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/shared/widgets/loading_widget.dart -------------------------------------------------------------------------------- /lib/presentation/shared/widgets/reload_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/shared/widgets/reload_widget.dart -------------------------------------------------------------------------------- /lib/presentation/shared/widgets/tab_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/presentation/shared/widgets/tab_selector.dart -------------------------------------------------------------------------------- /lib/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/lib/providers.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/attachments/api_access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/api_access.json -------------------------------------------------------------------------------- /test/attachments/attachment_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/attachment_reader.dart -------------------------------------------------------------------------------- /test/attachments/balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/balance.json -------------------------------------------------------------------------------- /test/attachments/balance_from_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/balance_from_stream.json -------------------------------------------------------------------------------- /test/attachments/bookticker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/bookticker.json -------------------------------------------------------------------------------- /test/attachments/cancel_order_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/cancel_order_response.json -------------------------------------------------------------------------------- /test/attachments/exchange_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/exchange_info.json -------------------------------------------------------------------------------- /test/attachments/exchange_symbol_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/exchange_symbol_info.json -------------------------------------------------------------------------------- /test/attachments/listen_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "listenKey": "1hvV1WRjbRFxrz9hQjw1wO9cqDV0AQWgnYezjANH66xembdpJsFqnZK9JCnv" 3 | } -------------------------------------------------------------------------------- /test/attachments/open_orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/open_orders.json -------------------------------------------------------------------------------- /test/attachments/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order.json -------------------------------------------------------------------------------- /test/attachments/order_fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order_fill.json -------------------------------------------------------------------------------- /test/attachments/order_response_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order_response_full.json -------------------------------------------------------------------------------- /test/attachments/order_response_full_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order_response_full_limit.json -------------------------------------------------------------------------------- /test/attachments/order_response_full_market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order_response_full_market.json -------------------------------------------------------------------------------- /test/attachments/order_response_full_stop_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/order_response_full_stop_limit.json -------------------------------------------------------------------------------- /test/attachments/ticker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/ticker.json -------------------------------------------------------------------------------- /test/attachments/ticker_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/ticker_stats.json -------------------------------------------------------------------------------- /test/attachments/userdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/userdata.json -------------------------------------------------------------------------------- /test/attachments/userdata_payload_accountupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/userdata_payload_accountupdate.json -------------------------------------------------------------------------------- /test/attachments/userdata_payload_orderupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/attachments/userdata_payload_orderupdate.json -------------------------------------------------------------------------------- /test/data/datasources/market_datasource_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/market_datasource_test.dart -------------------------------------------------------------------------------- /test/data/datasources/market_datasource_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/market_datasource_test.mocks.dart -------------------------------------------------------------------------------- /test/data/datasources/trade_datasource_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/trade_datasource_test.dart -------------------------------------------------------------------------------- /test/data/datasources/trade_datasource_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/trade_datasource_test.mocks.dart -------------------------------------------------------------------------------- /test/data/datasources/user_datasource_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/user_datasource_test.dart -------------------------------------------------------------------------------- /test/data/datasources/user_datasource_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/datasources/user_datasource_test.mocks.dart -------------------------------------------------------------------------------- /test/data/models/api_access_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/api_access_model_test.dart -------------------------------------------------------------------------------- /test/data/models/balance_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/balance_model_test.dart -------------------------------------------------------------------------------- /test/data/models/bookticker_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/bookticker_model_test.dart -------------------------------------------------------------------------------- /test/data/models/exchange_info_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/exchange_info_model_test.dart -------------------------------------------------------------------------------- /test/data/models/exchange_symbol_info_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/exchange_symbol_info_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_cancel_request_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_cancel_request_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_cancel_response_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_cancel_response_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_fill_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_fill_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_request_limit_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_request_limit_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_request_market_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_request_market_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_request_stop_limit_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_request_stop_limit_model_test.dart -------------------------------------------------------------------------------- /test/data/models/order_response_full_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/order_response_full_model_test.dart -------------------------------------------------------------------------------- /test/data/models/ticker_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/ticker_model_test.dart -------------------------------------------------------------------------------- /test/data/models/ticker_stats_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/ticker_stats_model_test.dart -------------------------------------------------------------------------------- /test/data/models/userdata_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/userdata_model_test.dart -------------------------------------------------------------------------------- /test/data/models/userdata_payload_accountupdate_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/userdata_payload_accountupdate_model_test.dart -------------------------------------------------------------------------------- /test/data/models/userdata_payload_orderupdate_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/models/userdata_payload_orderupdate_model_test.dart -------------------------------------------------------------------------------- /test/data/repositories/market_repository_impl_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/market_repository_impl_test.dart -------------------------------------------------------------------------------- /test/data/repositories/market_repository_impl_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/market_repository_impl_test.mocks.dart -------------------------------------------------------------------------------- /test/data/repositories/trade_repository_impl_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/trade_repository_impl_test.dart -------------------------------------------------------------------------------- /test/data/repositories/trade_repository_impl_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/trade_repository_impl_test.mocks.dart -------------------------------------------------------------------------------- /test/data/repositories/user_repository_impl_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/user_repository_impl_test.dart -------------------------------------------------------------------------------- /test/data/repositories/user_repository_impl_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/data/repositories/user_repository_impl_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_bookticker_stream_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_bookticker_stream_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_bookticker_stream_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_bookticker_stream_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_exchangeinfo_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_exchangeinfo_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_exchangeinfo_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_exchangeinfo_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_tickerstats_stream_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_tickerstats_stream_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/market_get_tickerstats_stream_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/market_get_tickerstats_stream_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/trade_cancel_order_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/trade_cancel_order_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/trade_cancel_order_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/trade_cancel_order_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/trade_post_order_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/trade_post_order_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/trade_post_order_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/trade_post_order_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_check_account_status_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_check_account_status_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_check_account_status_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_check_account_status_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_clear_api_access_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_clear_api_access_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_clear_api_access_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_clear_api_access_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_accountinfo_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_accountinfo_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_accountinfo_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_accountinfo_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_api_access_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_api_access_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_api_access_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_api_access_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_last_ticker_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_last_ticker_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_last_ticker_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_last_ticker_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_open_orders_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_open_orders_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_open_orders_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_open_orders_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_userdata_stream_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_userdata_stream_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_get_userdata_stream_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_get_userdata_stream_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_set_last_ticker_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_set_last_ticker_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_set_last_ticker_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_set_last_ticker_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_store_api_access_uc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_store_api_access_uc_test.dart -------------------------------------------------------------------------------- /test/domain/usecases/user_store_api_access_uc_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/domain/usecases/user_store_api_access_uc_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/accountinfo_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/accountinfo_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/accountinfo_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/accountinfo_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/auth_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/auth_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/auth_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/auth_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/bookticker_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/bookticker_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/bookticker_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/bookticker_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/exchangeinfo_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/exchangeinfo_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/exchangeinfo_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/exchangeinfo_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/orders_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/orders_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/orders_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/orders_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/state_handler_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/state_handler_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/state_handler_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/state_handler_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/ticker_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/ticker_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/ticker_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/ticker_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/tickerstats_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/tickerstats_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/tickerstats_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/tickerstats_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/trade_state_notifier_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/trade_state_notifier_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/trade_state_notifier_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/trade_state_notifier_test.mocks.dart -------------------------------------------------------------------------------- /test/presentation/logic/userdata_stream_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/userdata_stream_test.dart -------------------------------------------------------------------------------- /test/presentation/logic/userdata_stream_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/test/presentation/logic/userdata_stream_test.mocks.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/run_loop.h -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copmorty/price_action_orders/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------