├── .gitattributes ├── .gitignore ├── _PullFromMT4Dev.bat ├── mt4_profile ├── T1_FALCON_F2 │ ├── order.wnd │ ├── chart01.chr │ ├── chart13.chr │ ├── chart02.chr │ └── chart27.chr └── T3_FALCON_F2 │ ├── order.wnd │ ├── chart02.chr │ ├── chart03.chr │ ├── chart10.chr │ ├── chart16.chr │ ├── chart22.chr │ ├── chart27.chr │ ├── chart06.chr │ ├── chart01.chr │ ├── chart04.chr │ ├── chart07.chr │ ├── chart08.chr │ ├── chart17.chr │ ├── chart24.chr │ ├── chart28.chr │ ├── chart29.chr │ ├── chart05.chr │ ├── chart18.chr │ ├── chart23.chr │ ├── chart21.chr │ ├── chart19.chr │ ├── chart20.chr │ ├── chart11.chr │ ├── chart09.chr │ ├── chart25.chr │ └── chart14.chr ├── _PushToMT4Dev.bat ├── _PushToMT4Prod.bat ├── TEST └── Setup.csv ├── _SetToProd_CleanUp.bat ├── LICENSE ├── README.md └── PARAMETERS ├── 8139112.set └── 8139113.set /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | TEST/2018-09-22-Re-Train.csv 3 | TEST/2018-10-06-Re-Train.csv 4 | TEST/2018-10-20-Re-Train.csv 5 | TEST/2018-10-21-Re-Train.csv 6 | TEST/2018-11-04-Re-Train.csv 7 | TEST/2018-11-17-Re-Train.csv 8 | TEST/2018-11-18-Re-Train.csv 9 | TEST/2018-11-25-Re-Train.csv 10 | TEST/2018-12-01-Re-Train.csv 11 | *.csv 12 | -------------------------------------------------------------------------------- /_PullFromMT4Dev.bat: -------------------------------------------------------------------------------- 1 | rem Script to Sync Files from Development Terminal to Version Control 2 | 3 | @echo off 4 | setlocal enabledelayedexpansion 5 | 6 | :: Source Directory where Expert Advisor is located 7 | set SOURCE_DIR="%PATH_T2_E%\FALCON_F2" 8 | :: Destination Directory where Version Control Repository is located 9 | set DEST_DIR="%PATH_DSS_Repo%\FALCON_F2" 10 | 11 | :: Copy only files with *.mq4 extension 12 | ROBOCOPY %SOURCE_DIR% %DEST_DIR% *.mq4 -------------------------------------------------------------------------------- /mt4_profile/T1_FALCON_F2/order.wnd: -------------------------------------------------------------------------------- 1 | EURUSD,M1 2 | USDCHF,M15 3 | GBPUSD,M15 4 | EURUSD,M15 5 | USDJPY,M15 6 | USDCAD,M15 7 | AUDUSD,M15 8 | EURGBP,M15 9 | EURAUD,M15 10 | EURCHF,M15 11 | EURJPY,M15 12 | GBPCHF,M15 13 | CADJPY,M15 14 | GBPJPY,M15 15 | AUDNZD,M15 16 | AUDCAD,M15 17 | AUDCHF,M15 18 | AUDJPY,M15 19 | CHFJPY,M15 20 | EURNZD,M15 21 | EURCAD,M15 22 | CADCHF,M15 23 | NZDJPY,M15 24 | NZDUSD,M15 25 | GBPAUD,M15 26 | GBPCAD,M15 27 | NZDCHF,M15 28 | GBPNZD,M15 29 | NZDCAD,M15 30 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/order.wnd: -------------------------------------------------------------------------------- 1 | EURUSD,M1 2 | USDCHF,M15 3 | GBPUSD,M15 4 | EURUSD,M15 5 | USDJPY,M15 6 | USDCAD,M15 7 | AUDUSD,M15 8 | EURGBP,M15 9 | EURAUD,M15 10 | EURCHF,M15 11 | EURJPY,M15 12 | GBPCHF,M15 13 | CADJPY,M15 14 | GBPJPY,M15 15 | AUDNZD,M15 16 | AUDCAD,M15 17 | AUDCHF,M15 18 | AUDJPY,M15 19 | CHFJPY,M15 20 | EURNZD,M15 21 | EURCAD,M15 22 | CADCHF,M15 23 | NZDJPY,M15 24 | NZDUSD,M15 25 | GBPAUD,M15 26 | GBPCAD,M15 27 | NZDCHF,M15 28 | GBPNZD,M15 29 | NZDCAD,M15 30 | -------------------------------------------------------------------------------- /_PushToMT4Dev.bat: -------------------------------------------------------------------------------- 1 | rem Script to Deploy files from Version Control repository to Development Terminal 2 | rem Use in case some content needs to be replaced (reverted from Version Control History) 3 | 4 | @echo off 5 | setlocal enabledelayedexpansion 6 | 7 | :: Source Directory where Version Control Repository is located 8 | set SOURCE_DIR="%PATH_DSS_Repo%\FALCON_F2" 9 | :: Destination Directory where Expert Advisor is located 10 | set DEST_DIR="%PATH_T2_E%\FALCON_F2" 11 | 12 | ROBOCOPY %SOURCE_DIR% %DEST_DIR% *.mq4 13 | 14 | -------------------------------------------------------------------------------- /_PushToMT4Prod.bat: -------------------------------------------------------------------------------- 1 | rem Script to Deploy files from Version Control repository to All Terminals 2 | rem Use when you need to publish all files to All Terminals 3 | 4 | @echo off 5 | setlocal enabledelayedexpansion 6 | 7 | set SOURCE_DIR="%PATH_DSS_Repo%\FALCON_F2" 8 | set DEST_DIR1="%PATH_T1_E%\FALCON_F2" 9 | set DEST_DIR2="%PATH_T2_E%\FALCON_F2" 10 | set DEST_DIR3="%PATH_T3_E%\FALCON_F2" 11 | set DEST_DIR4="%PATH_T4_E%\FALCON_F2" 12 | 13 | ROBOCOPY %SOURCE_DIR% %DEST_DIR1% *.mq4 14 | ROBOCOPY %SOURCE_DIR% %DEST_DIR2% *.mq4 15 | ROBOCOPY %SOURCE_DIR% %DEST_DIR3% *.mq4 16 | ROBOCOPY %SOURCE_DIR% %DEST_DIR4% *.mq4 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /TEST/Setup.csv: -------------------------------------------------------------------------------- 1 | Pair,Period,Magic 2 | USDCHF,M15,9139126 3 | GBPUSD,M15,9139120 4 | EURUSD,M15,9139114 5 | USDJPY,M15,9139127 6 | USDCAD,M15,9139125 7 | AUDUSD,M15,9139104 8 | EURGBP,M15,9139111 9 | EURAUD,M15,9139108 10 | EURCHF,M15,9139110 11 | EURJPY,M15,9139112 12 | GBPCHF,M15,9139117 13 | CADJPY,M15,9139106 14 | GBPJPY,M15,9139118 15 | AUDNZD,M15,9139103 16 | AUDCAD,M15,9139100 17 | AUDCHF,M15,9139101 18 | AUDJPY,M15,9139102 19 | CHFJPY,M15,9139107 20 | EURNZD,M15,9139113 21 | EURCAD,M15,9139109 22 | CADCHF,M15,9139105 23 | NZDJPY,M15,9139123 24 | NZDUSD,M15,9139124 25 | GBPAUD,M15,9139115 26 | GBPCAD,M15,9139116 27 | NZDCHF,M15,9139122 28 | GBPNZD,M15,9139119 29 | NZDCAD,M15,9139121 30 | -------------------------------------------------------------------------------- /_SetToProd_CleanUp.bat: -------------------------------------------------------------------------------- 1 | rem Script to prepare robot FALCON_F2 to production 2 | rem IMPORTANT: This script will also clean up all relevant files to start from the beginning 3 | rem To be used to start from the beginning, eventually automate this script to run 1x week on Sunday evening! 4 | 5 | @echo off 6 | setlocal enabledelayedexpansion 7 | 8 | 9 | :: ### TERMINAL 1 ### 10 | :: delete Order Results files 11 | del "%PATH_T1%\OrdersResultsT1.csv" \q 12 | :: delete files with MarketType prediction 13 | del "%PATH_T1%\AI_MarketType_*.csv" \q 14 | :: delete files with MarketType log 15 | del "%PATH_T1%\MarketTypeLog*.csv" \q 16 | :: ### TERMINAL 3 ### 17 | :: delete Order Results files 18 | del "%PATH_T3%\OrdersResultsT3.csv" \q 19 | :: delete files with MarketType prediction 20 | del "%PATH_T3%\AI_MarketType_*.csv" \q 21 | :: delete files with MarketType log 22 | del "%PATH_T3%\MarketTypeLog*.csv" \q 23 | :: delete files with Reinforcement Learning Policy 24 | del "%PATH_T3%\SystemControlMT*.csv" \q 25 | 26 | :: delete control files with extension *.rds 27 | del "%PATH_DSS_Repo%\R_tradecontrol\_RL_MT\control\*.rds" \q 28 | 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 vzhomeexperiments 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FALCON_F2 2 | 3 | ## About 4 | 5 | This is a model based Trading robot. Trading predictions should be generated outside of the MT4 platform. Robot will just interpret those predictions and handle orders executions. 6 | 7 | Repository is also containing several scripts to automate robot deployment across several trading terminals 8 | 9 | # Synchronize or Deploy 10 | 11 | ## Setup Environmental Variables 12 | 13 | Add these User Environmental Variables: 14 | 15 | PATH_T2_E - path to Development Terminal MT4, folder *\MQL4\Experts 16 | PATH_T1_E, PATH_T3_E, etc - paths to the Terminals where all other terminals are located 17 | PATH_DSS_Repo - path to the folder where this repository is stored on the local computer 18 | 19 | *Note* Edit script setupEV.bat to automatically setup such Environmental Variables 20 | 21 | ## Version 1.008 22 | 23 | Add architecture to store ticket numbers and array info into the flat files and update this info on platform restart 24 | 25 | ## Handling Trading Decisions 26 | 27 | ### Entry 28 | 29 | * Predicted future price change exceed the trigger (obtained from the file AI) 30 | Trigger for entry will be obtained from the test results obtained from the file StrTestxxx.csv 31 | 32 | ### Exits 33 | 34 | * Order hit stop loss value 35 | * Order hit take profit value 36 | * Time. Time to hold in Hours will be derived from the strategy test results obtained from the file StrTestxxx.csv 37 | 38 | ## Testing 39 | 40 | ### Sample files shall be placed to the sandbox 41 | 42 | * Place provided files into the sandbox of the terminal (see folder TEST) 43 | * Change values inside files to verify trading logic 44 | * Trade will be executed at the new bar (e.g. use M5 timechart to speed up the test) 45 | 46 | ## Courious how to apply? 47 | 48 | This content is a result of a lot of dedication and time. 49 | Please support this project by joining these courses using referral links published 50 | here: https://vladdsm.github.io/myblog_attempt/topics/topics-my-promotions.html -------------------------------------------------------------------------------- /PARAMETERS/8139112.set: -------------------------------------------------------------------------------- 1 | Header1=----------EA General Settings----------- 2 | MagicNumber=8139112 3 | TerminalType=1 4 | R_Management=true 5 | Slippage=3 6 | IsECNbroker=false 7 | OnJournaling=false 8 | EnableDashboard=true 9 | Header2=----------Trading Rules Variables ----------- 10 | RobotBehavior=daily 11 | usePredictedSL=false 12 | usePredictedTP=false 13 | TimeMaxHoldM1=75 14 | TimeMaxHoldM15=1125 15 | TimeMaxHoldM60=4500 16 | entryTriggerM1=20 17 | entryTriggerM15=50 18 | entryTriggerM60=100 19 | stopLossFactorM1=2.0 20 | stopLossFactorM15=0.8 21 | stopLossFactorM60=0.8 22 | takeProfFactorM1=1.0 23 | takeProfFactorM15=1.0 24 | takeProfFactorM60=1.0 25 | predictor_periodM1=1 26 | predictor_periodM15=15 27 | predictor_periodH1=60 28 | closeAllOnFridays=true 29 | use_market_type=true 30 | Header3=----------Position Sizing Settings----------- 31 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 32 | Lots=0.01 33 | IsSizingOn=false 34 | Risk=1.0 35 | MaxPositionsAllowed=25 36 | Header4=----------TP & SL Settings----------- 37 | UseFixedStopLoss=true 38 | FixedStopLoss=0.0 39 | IsVolatilityStopOn=true 40 | VolBasedSLMultiplier=4.0 41 | UseFixedTakeProfit=true 42 | FixedTakeProfit=0.0 43 | IsVolatilityTakeProfitOn=true 44 | VolBasedTPMultiplier=6.0 45 | Header5=----------Hidden TP & SL Settings----------- 46 | UseHiddenStopLoss=false 47 | FixedStopLoss_Hidden=0.0 48 | IsVolatilityStopLossOn_Hidden=false 49 | VolBasedSLMultiplier_Hidden=0.0 50 | UseHiddenTakeProfit=false 51 | FixedTakeProfit_Hidden=0.0 52 | IsVolatilityTakeProfitOn_Hidden=false 53 | VolBasedTPMultiplier_Hidden=0.0 54 | Header6=----------Breakeven Stops Settings----------- 55 | UseBreakevenStops=false 56 | BreakevenBuffer=0.0 57 | Header7=----------Hidden Breakeven Stops Settings----------- 58 | UseHiddenBreakevenStops=false 59 | BreakevenBuffer_Hidden=0.0 60 | Header8=----------Trailing Stops Settings----------- 61 | UseTrailingStops=false 62 | TrailingStopDistance=0.0 63 | TrailingStopBuffer=0.0 64 | Header9=----------Hidden Trailing Stops Settings----------- 65 | UseHiddenTrailingStops=false 66 | TrailingStopDistance_Hidden=0.0 67 | TrailingStopBuffer_Hidden=0.0 68 | Header10=----------Volatility Trailing Stops Settings----------- 69 | UseVolTrailingStops=false 70 | VolTrailingDistMultiplier=0.0 71 | VolTrailingBuffMultiplier=0.0 72 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 73 | UseHiddenVolTrailing=false 74 | VolTrailingDistMultiplier_Hidden=0.0 75 | VolTrailingBuffMultiplier_Hidden=0.0 76 | Header12=----------Volatility Measurement Settings----------- 77 | atr_period=14 78 | Header13=----------Set Max Loss Limit----------- 79 | IsLossLimitActivated=false 80 | LossLimitPercent=50.0 81 | Header14=----------Set Max Volatility Limit----------- 82 | IsVolLimitActivated=false 83 | VolatilityMultiplier=3.0 84 | ATRTimeframe=60 85 | ATRPeriod=14 86 | -------------------------------------------------------------------------------- /PARAMETERS/8139113.set: -------------------------------------------------------------------------------- 1 | Header1=----------EA General Settings----------- 2 | MagicNumber=8139113 3 | TerminalType=1 4 | R_Management=true 5 | Slippage=3 6 | IsECNbroker=false 7 | OnJournaling=false 8 | EnableDashboard=true 9 | Header2=----------Trading Rules Variables ----------- 10 | RobotBehavior=daily 11 | usePredictedSL=false 12 | usePredictedTP=false 13 | TimeMaxHoldM1=75 14 | TimeMaxHoldM15=1125 15 | TimeMaxHoldM60=4500 16 | entryTriggerM1=20 17 | entryTriggerM15=50 18 | entryTriggerM60=100 19 | stopLossFactorM1=2.0 20 | stopLossFactorM15=0.8 21 | stopLossFactorM60=0.8 22 | takeProfFactorM1=1.0 23 | takeProfFactorM15=1.0 24 | takeProfFactorM60=1.0 25 | predictor_periodM1=1 26 | predictor_periodM15=15 27 | predictor_periodH1=60 28 | closeAllOnFridays=true 29 | use_market_type=true 30 | Header3=----------Position Sizing Settings----------- 31 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 32 | Lots=0.01 33 | IsSizingOn=false 34 | Risk=1.0 35 | MaxPositionsAllowed=25 36 | Header4=----------TP & SL Settings----------- 37 | UseFixedStopLoss=true 38 | FixedStopLoss=0.0 39 | IsVolatilityStopOn=true 40 | VolBasedSLMultiplier=4.0 41 | UseFixedTakeProfit=true 42 | FixedTakeProfit=0.0 43 | IsVolatilityTakeProfitOn=true 44 | VolBasedTPMultiplier=6.0 45 | Header5=----------Hidden TP & SL Settings----------- 46 | UseHiddenStopLoss=false 47 | FixedStopLoss_Hidden=0.0 48 | IsVolatilityStopLossOn_Hidden=false 49 | VolBasedSLMultiplier_Hidden=0.0 50 | UseHiddenTakeProfit=false 51 | FixedTakeProfit_Hidden=0.0 52 | IsVolatilityTakeProfitOn_Hidden=false 53 | VolBasedTPMultiplier_Hidden=0.0 54 | Header6=----------Breakeven Stops Settings----------- 55 | UseBreakevenStops=false 56 | BreakevenBuffer=0.0 57 | Header7=----------Hidden Breakeven Stops Settings----------- 58 | UseHiddenBreakevenStops=false 59 | BreakevenBuffer_Hidden=0.0 60 | Header8=----------Trailing Stops Settings----------- 61 | UseTrailingStops=false 62 | TrailingStopDistance=0.0 63 | TrailingStopBuffer=0.0 64 | Header9=----------Hidden Trailing Stops Settings----------- 65 | UseHiddenTrailingStops=false 66 | TrailingStopDistance_Hidden=0.0 67 | TrailingStopBuffer_Hidden=0.0 68 | Header10=----------Volatility Trailing Stops Settings----------- 69 | UseVolTrailingStops=false 70 | VolTrailingDistMultiplier=0.0 71 | VolTrailingBuffMultiplier=0.0 72 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 73 | UseHiddenVolTrailing=false 74 | VolTrailingDistMultiplier_Hidden=0.0 75 | VolTrailingBuffMultiplier_Hidden=0.0 76 | Header12=----------Volatility Measurement Settings----------- 77 | atr_period=14 78 | Header13=----------Set Max Loss Limit----------- 79 | IsLossLimitActivated=false 80 | LossLimitPercent=50.0 81 | Header14=----------Set Max Volatility Limit----------- 82 | IsVolLimitActivated=false 83 | VolatilityMultiplier=3.0 84 | ATRTimeframe=60 85 | ATRPeriod=14 86 | -------------------------------------------------------------------------------- /mt4_profile/T1_FALCON_F2/chart01.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131036619907246545 3 | symbol=EURUSD 4 | period=1 5 | leftpos=1109579 6 | digits=5 7 | scale=1 8 | graph=1 9 | fore=1 10 | grid=0 11 | volume=0 12 | scroll=1 13 | shift=1 14 | ohlc=1 15 | one_click=1 16 | one_click_btn=1 17 | askline=0 18 | days=1 19 | descriptions=0 20 | shift_size=20 21 | fixed_pos=0 22 | window_left=0 23 | window_top=0 24 | window_right=527 25 | window_bottom=267 26 | window_type=1 27 | background_color=16777215 28 | foreground_color=0 29 | barup_color=0 30 | bardown_color=0 31 | bullcandle_color=16777215 32 | bearcandle_color=0 33 | chartline_color=0 34 | volumes_color=32768 35 | grid_color=12632256 36 | askline_color=17919 37 | stops_color=17919 38 | 39 | 40 | height=148 41 | fixed_height=0 42 | 43 | name=main 44 | 45 | 46 | name=Alligator 47 | period=13 48 | shift=8 49 | period2=8 50 | shift2=5 51 | period3=5 52 | shift3=3 53 | method=2 54 | apply=4 55 | color=16711680 56 | style=0 57 | weight=1 58 | color2=255 59 | style2=0 60 | weight2=1 61 | color3=65280 62 | style3=0 63 | weight3=1 64 | period_flags=0 65 | show_data=1 66 | 67 | 68 | name=Custom Indicator 69 | 70 | name=SuperSmoother v1.1 71 | flags=275 72 | window_num=0 73 | 74 | AttenuationPeriod=10 75 | Shift=0 76 | 77 | 78 | shift_0=0 79 | draw_0=0 80 | color_0=65280 81 | style_0=0 82 | weight_0=3 83 | period_flags=0 84 | show_data=1 85 | 86 | 87 | name=Fractals 88 | color=8421504 89 | weight=1 90 | period_flags=0 91 | show_data=1 92 | 93 | 94 | 95 | 96 | height=37 97 | fixed_height=0 98 | 99 | name=MACD 100 | fast_ema=12 101 | slow_ema=26 102 | macd_sma=9 103 | apply=0 104 | color=3329330 105 | style=0 106 | weight=1 107 | signal_color=255 108 | signal_style=0 109 | signal_weight=1 110 | levels_color=12632256 111 | levels_style=2 112 | levels_weight=1 113 | level_0=0.00000000 114 | period_flags=0 115 | show_data=1 116 | 117 | 118 | 119 | 120 | height=35 121 | fixed_height=0 122 | 123 | name=Stochastic Oscillator 124 | kperiod=8 125 | dperiod=3 126 | slowing=3 127 | method=0 128 | apply=0 129 | color=3329330 130 | style=0 131 | weight=1 132 | color2=255 133 | style2=0 134 | weight2=1 135 | min=0.00000000 136 | max=100.00000000 137 | levels_color=12632256 138 | levels_style=2 139 | levels_weight=1 140 | level_0=20.00000000 141 | level_1=80.00000000 142 | period_flags=0 143 | show_data=1 144 | 145 | 146 | 147 | 148 | height=50 149 | fixed_height=0 150 | 151 | name=Relative Strength Index 152 | period=13 153 | apply=0 154 | color=3329330 155 | style=0 156 | weight=1 157 | min=0.00000000 158 | max=100.00000000 159 | levels_color=12632256 160 | levels_style=2 161 | levels_weight=1 162 | level_0=30.00000000 163 | level_1=70.00000000 164 | period_flags=0 165 | show_data=1 166 | 167 | 168 | name=Relative Strength Index 169 | period=3 170 | apply=0 171 | color=255 172 | style=0 173 | weight=1 174 | min=0.00000000 175 | max=100.00000000 176 | levels_color=12632256 177 | levels_style=2 178 | levels_weight=1 179 | level_0=30.00000000 180 | level_1=70.00000000 181 | period_flags=0 182 | show_data=1 183 | 184 | 185 | 186 | 187 | name=WatchDog 188 | flags=343 189 | window_num=0 190 | 191 | AccountRow=1 192 | DelayMinutes=5 193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart02.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133835 3 | comment=Trade is not allowed 4 | symbol=USDCHF 5 | period=15 6 | leftpos=47038 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139301 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart03.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133836 3 | comment=Trade is not allowed 4 | symbol=GBPUSD 5 | period=15 6 | leftpos=50295 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139302 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart10.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133843 3 | comment=Trade is not allowed 4 | symbol=EURCHF 5 | period=15 6 | leftpos=47022 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139309 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart16.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133849 3 | comment=Trade is not allowed 4 | symbol=AUDCAD 5 | period=15 6 | leftpos=47043 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139315 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart22.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133855 3 | comment=Trade is not allowed 4 | symbol=CADCHF 5 | period=15 6 | leftpos=44977 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139321 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart27.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133860 3 | comment=Trade is not allowed 4 | symbol=NZDCHF 5 | period=15 6 | leftpos=44995 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | 47 | 48 | 49 | name=FALCON_F2\Falcon_F2 50 | flags=343 51 | window_num=0 52 | 53 | Header1=----------EA General Settings----------- 54 | MagicNumber=8139326 55 | TerminalType=0 56 | R_Management=true 57 | Slippage=3 58 | IsECNbroker=false 59 | OnJournaling=false 60 | EnableDashboard=true 61 | Header2=----------Trading Rules Variables ----------- 62 | RobotBehavior=daily 63 | usePredictedSL=false 64 | usePredictedTP=false 65 | TimeMaxHoldM1=75 66 | TimeMaxHoldM15=1125 67 | TimeMaxHoldM60=4500 68 | entryTriggerM1=20 69 | entryTriggerM15=50 70 | entryTriggerM60=100 71 | stopLossFactorM1=2.0 72 | stopLossFactorM15=0.8 73 | stopLossFactorM60=0.8 74 | takeProfFactorM1=1.0 75 | takeProfFactorM15=1.0 76 | takeProfFactorM60=1.0 77 | predictor_periodM1=1 78 | predictor_periodM15=15 79 | predictor_periodH1=60 80 | closeAllOnFridays=true 81 | use_market_type=true 82 | Header3=----------Position Sizing Settings----------- 83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 84 | Lots=0.0 85 | IsSizingOn=true 86 | Risk=1.0 87 | MaxPositionsAllowed=1 88 | Header4=----------TP & SL Settings----------- 89 | UseFixedStopLoss=true 90 | FixedStopLoss=0.0 91 | IsVolatilityStopOn=true 92 | VolBasedSLMultiplier=4.0 93 | UseFixedTakeProfit=true 94 | FixedTakeProfit=0.0 95 | IsVolatilityTakeProfitOn=true 96 | VolBasedTPMultiplier=6.0 97 | Header5=----------Hidden TP & SL Settings----------- 98 | UseHiddenStopLoss=false 99 | FixedStopLoss_Hidden=0.0 100 | IsVolatilityStopLossOn_Hidden=false 101 | VolBasedSLMultiplier_Hidden=0.0 102 | UseHiddenTakeProfit=false 103 | FixedTakeProfit_Hidden=0.0 104 | IsVolatilityTakeProfitOn_Hidden=false 105 | VolBasedTPMultiplier_Hidden=0.0 106 | Header6=----------Breakeven Stops Settings----------- 107 | UseBreakevenStops=false 108 | BreakevenBuffer=0.0 109 | Header7=----------Hidden Breakeven Stops Settings----------- 110 | UseHiddenBreakevenStops=false 111 | BreakevenBuffer_Hidden=0.0 112 | Header8=----------Trailing Stops Settings----------- 113 | UseTrailingStops=false 114 | TrailingStopDistance=0.0 115 | TrailingStopBuffer=0.0 116 | Header9=----------Hidden Trailing Stops Settings----------- 117 | UseHiddenTrailingStops=false 118 | TrailingStopDistance_Hidden=0.0 119 | TrailingStopBuffer_Hidden=0.0 120 | Header10=----------Volatility Trailing Stops Settings----------- 121 | UseVolTrailingStops=false 122 | VolTrailingDistMultiplier=0.0 123 | VolTrailingBuffMultiplier=0.0 124 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 125 | UseHiddenVolTrailing=false 126 | VolTrailingDistMultiplier_Hidden=0.0 127 | VolTrailingBuffMultiplier_Hidden=0.0 128 | Header12=----------Volatility Measurement Settings----------- 129 | atr_period=14 130 | Header13=----------Set Max Loss Limit----------- 131 | IsLossLimitActivated=false 132 | LossLimitPercent=50.0 133 | Header14=----------Set Max Volatility Limit----------- 134 | IsVolLimitActivated=false 135 | VolatilityMultiplier=3.0 136 | ATRTimeframe=60 137 | ATRPeriod=14 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart06.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133839 3 | comment=Trade is not allowed 4 | symbol=USDCAD 5 | period=15 6 | leftpos=46816 7 | digits=5 8 | scale=1 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166625296 sell 0.02 USDCAD at 1.36373 48 | period_flags=0 49 | create_time=1545925500 50 | description= 1(#8132305) (8132305) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545932700 61 | value_0=1.363730 62 | 63 | 64 | type=22 65 | object_name=#166625296 sell 0.02 USDCAD at 1.36373 stop loss at 1.37184 66 | period_flags=0 67 | create_time=1545925500 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545932700 78 | value_0=1.371840 79 | 80 | 81 | type=22 82 | object_name=#166625296 sell 0.02 USDCAD at 1.36373 take profit at 1.35562 83 | period_flags=0 84 | create_time=1545925500 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545932700 95 | value_0=1.355620 96 | 97 | 98 | 99 | 100 | 101 | name=FALCON_F2\Falcon_F2 102 | flags=343 103 | window_num=0 104 | 105 | Header1=----------EA General Settings----------- 106 | MagicNumber=8139305 107 | TerminalType=0 108 | R_Management=true 109 | Slippage=3 110 | IsECNbroker=false 111 | OnJournaling=false 112 | EnableDashboard=true 113 | Header2=----------Trading Rules Variables ----------- 114 | RobotBehavior=daily 115 | usePredictedSL=false 116 | usePredictedTP=false 117 | TimeMaxHoldM1=75 118 | TimeMaxHoldM15=1125 119 | TimeMaxHoldM60=4500 120 | entryTriggerM1=20 121 | entryTriggerM15=50 122 | entryTriggerM60=100 123 | stopLossFactorM1=2.0 124 | stopLossFactorM15=0.8 125 | stopLossFactorM60=0.8 126 | takeProfFactorM1=1.0 127 | takeProfFactorM15=1.0 128 | takeProfFactorM60=1.0 129 | predictor_periodM1=1 130 | predictor_periodM15=15 131 | predictor_periodH1=60 132 | closeAllOnFridays=true 133 | use_market_type=true 134 | Header3=----------Position Sizing Settings----------- 135 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 136 | Lots=0.0 137 | IsSizingOn=true 138 | Risk=1.0 139 | MaxPositionsAllowed=1 140 | Header4=----------TP & SL Settings----------- 141 | UseFixedStopLoss=true 142 | FixedStopLoss=0.0 143 | IsVolatilityStopOn=true 144 | VolBasedSLMultiplier=4.0 145 | UseFixedTakeProfit=true 146 | FixedTakeProfit=0.0 147 | IsVolatilityTakeProfitOn=true 148 | VolBasedTPMultiplier=6.0 149 | Header5=----------Hidden TP & SL Settings----------- 150 | UseHiddenStopLoss=false 151 | FixedStopLoss_Hidden=0.0 152 | IsVolatilityStopLossOn_Hidden=false 153 | VolBasedSLMultiplier_Hidden=0.0 154 | UseHiddenTakeProfit=false 155 | FixedTakeProfit_Hidden=0.0 156 | IsVolatilityTakeProfitOn_Hidden=false 157 | VolBasedTPMultiplier_Hidden=0.0 158 | Header6=----------Breakeven Stops Settings----------- 159 | UseBreakevenStops=false 160 | BreakevenBuffer=0.0 161 | Header7=----------Hidden Breakeven Stops Settings----------- 162 | UseHiddenBreakevenStops=false 163 | BreakevenBuffer_Hidden=0.0 164 | Header8=----------Trailing Stops Settings----------- 165 | UseTrailingStops=false 166 | TrailingStopDistance=0.0 167 | TrailingStopBuffer=0.0 168 | Header9=----------Hidden Trailing Stops Settings----------- 169 | UseHiddenTrailingStops=false 170 | TrailingStopDistance_Hidden=0.0 171 | TrailingStopBuffer_Hidden=0.0 172 | Header10=----------Volatility Trailing Stops Settings----------- 173 | UseVolTrailingStops=false 174 | VolTrailingDistMultiplier=0.0 175 | VolTrailingBuffMultiplier=0.0 176 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 177 | UseHiddenVolTrailing=false 178 | VolTrailingDistMultiplier_Hidden=0.0 179 | VolTrailingBuffMultiplier_Hidden=0.0 180 | Header12=----------Volatility Measurement Settings----------- 181 | atr_period=14 182 | Header13=----------Set Max Loss Limit----------- 183 | IsLossLimitActivated=false 184 | LossLimitPercent=50.0 185 | Header14=----------Set Max Volatility Limit----------- 186 | IsVolLimitActivated=false 187 | VolatilityMultiplier=3.0 188 | ATRTimeframe=60 189 | ATRPeriod=14 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart01.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131036619907246545 3 | symbol=EURUSD 4 | period=1 5 | leftpos=921198 6 | digits=5 7 | scale=1 8 | graph=1 9 | fore=1 10 | grid=0 11 | volume=0 12 | scroll=1 13 | shift=1 14 | ohlc=1 15 | one_click=1 16 | one_click_btn=1 17 | askline=0 18 | days=1 19 | descriptions=0 20 | shift_size=20 21 | fixed_pos=0 22 | window_left=0 23 | window_top=0 24 | window_right=176 25 | window_bottom=77 26 | window_type=1 27 | background_color=16777215 28 | foreground_color=0 29 | barup_color=0 30 | bardown_color=0 31 | bullcandle_color=16777215 32 | bearcandle_color=0 33 | chartline_color=0 34 | volumes_color=32768 35 | grid_color=12632256 36 | askline_color=17919 37 | stops_color=17919 38 | 39 | 40 | height=148 41 | fixed_height=0 42 | 43 | name=main 44 | 45 | type=22 46 | object_name=#43945831 buy 0.01 EURUSD at 1.06137 47 | period_flags=0 48 | create_time=1481397634 49 | color=16711680 50 | weight=1 51 | background=0 52 | symbol_code=1 53 | anchor_pos=0 54 | filling=0 55 | selectable=1 56 | hidden=0 57 | zorder=0 58 | time_0=1481233464 59 | value_0=1.061370 60 | 61 | 62 | type=22 63 | object_name=#43945831 buy 0.01 EURUSD at 1.06137 stop loss at 1.05829 64 | period_flags=0 65 | create_time=1481397634 66 | color=255 67 | weight=1 68 | background=0 69 | symbol_code=4 70 | anchor_pos=0 71 | filling=0 72 | selectable=1 73 | hidden=0 74 | zorder=0 75 | time_0=1481233464 76 | value_0=1.058290 77 | 78 | 79 | type=22 80 | object_name=#43945831 buy 0.01 EURUSD at 1.06137 take profit at 1.07491 81 | period_flags=0 82 | create_time=1481397634 83 | color=16711680 84 | weight=1 85 | background=0 86 | symbol_code=4 87 | anchor_pos=0 88 | filling=0 89 | selectable=1 90 | hidden=0 91 | zorder=0 92 | time_0=1481233464 93 | value_0=1.074910 94 | 95 | 96 | type=22 97 | object_name=#43945831 buy 0.01 EURUSD at 1.06137 close at 1.05827 98 | period_flags=0 99 | create_time=1481397634 100 | color=2139610 101 | weight=1 102 | background=0 103 | symbol_code=3 104 | anchor_pos=0 105 | filling=0 106 | selectable=1 107 | hidden=0 108 | zorder=0 109 | time_0=1481290939 110 | value_0=1.058270 111 | 112 | 113 | type=2 114 | object_name=#43945831 1.06137 -> 1.05827 115 | period_flags=0 116 | create_time=1481397634 117 | color=16711680 118 | style=2 119 | weight=1 120 | background=0 121 | filling=0 122 | selectable=1 123 | hidden=0 124 | zorder=0 125 | time_0=1481233464 126 | value_0=1.061370 127 | time_1=1481290939 128 | value_1=1.058270 129 | ray=0 130 | 131 | 132 | type=1 133 | object_name=Horizontal Line 22024 134 | period_flags=0 135 | create_time=1481397768 136 | color=255 137 | style=0 138 | weight=1 139 | background=0 140 | filling=0 141 | selectable=1 142 | hidden=0 143 | zorder=0 144 | value_0=1.062613 145 | 146 | 147 | type=1 148 | object_name=Horizontal Line 22041 149 | period_flags=0 150 | create_time=1481397785 151 | color=255 152 | style=0 153 | weight=1 154 | background=0 155 | filling=0 156 | selectable=1 157 | hidden=0 158 | zorder=0 159 | value_0=1.050177 160 | 161 | 162 | 163 | name=Alligator 164 | period=13 165 | shift=8 166 | period2=8 167 | shift2=5 168 | period3=5 169 | shift3=3 170 | method=2 171 | apply=4 172 | color=16711680 173 | style=0 174 | weight=1 175 | color2=255 176 | style2=0 177 | weight2=1 178 | color3=65280 179 | style3=0 180 | weight3=1 181 | period_flags=0 182 | show_data=1 183 | 184 | 185 | name=Custom Indicator 186 | 187 | name=SuperSmoother v1.1 188 | flags=275 189 | window_num=0 190 | 191 | AttenuationPeriod=10 192 | Shift=0 193 | 194 | 195 | shift_0=0 196 | draw_0=0 197 | color_0=65280 198 | style_0=0 199 | weight_0=3 200 | period_flags=0 201 | show_data=1 202 | 203 | 204 | name=Fractals 205 | color=8421504 206 | weight=1 207 | period_flags=0 208 | show_data=1 209 | 210 | 211 | 212 | 213 | height=37 214 | fixed_height=0 215 | 216 | name=MACD 217 | fast_ema=12 218 | slow_ema=26 219 | macd_sma=9 220 | apply=0 221 | color=3329330 222 | style=0 223 | weight=1 224 | signal_color=255 225 | signal_style=0 226 | signal_weight=1 227 | levels_color=12632256 228 | levels_style=2 229 | levels_weight=1 230 | level_0=0.00000000 231 | period_flags=0 232 | show_data=1 233 | 234 | 235 | 236 | 237 | height=35 238 | fixed_height=0 239 | 240 | name=Stochastic Oscillator 241 | kperiod=8 242 | dperiod=3 243 | slowing=3 244 | method=0 245 | apply=0 246 | color=3329330 247 | style=0 248 | weight=1 249 | color2=255 250 | style2=0 251 | weight2=1 252 | min=0.00000000 253 | max=100.00000000 254 | levels_color=12632256 255 | levels_style=2 256 | levels_weight=1 257 | level_0=20.00000000 258 | level_1=80.00000000 259 | period_flags=0 260 | show_data=1 261 | 262 | 263 | 264 | 265 | height=50 266 | fixed_height=0 267 | 268 | name=Relative Strength Index 269 | period=13 270 | apply=0 271 | color=3329330 272 | style=0 273 | weight=1 274 | min=0.00000000 275 | max=100.00000000 276 | levels_color=12632256 277 | levels_style=2 278 | levels_weight=1 279 | level_0=30.00000000 280 | level_1=70.00000000 281 | period_flags=0 282 | show_data=1 283 | 284 | 285 | name=Relative Strength Index 286 | period=3 287 | apply=0 288 | color=255 289 | style=0 290 | weight=1 291 | min=0.00000000 292 | max=100.00000000 293 | levels_color=12632256 294 | levels_style=2 295 | levels_weight=1 296 | level_0=30.00000000 297 | level_1=70.00000000 298 | period_flags=0 299 | show_data=1 300 | 301 | 302 | 303 | 304 | name=WatchDog 305 | flags=343 306 | window_num=0 307 | 308 | AccountRow=1 309 | DelayMinutes=5 310 | 311 | 312 | 313 | 314 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart04.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133837 3 | comment=Trade is not allowed 4 | symbol=EURUSD 5 | period=15 6 | leftpos=50228 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166601027 sell 0.02 EURUSD at 1.13987 48 | period_flags=0 49 | create_time=1545650100 50 | description= 1(#8132303) (8132303) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545657300 61 | value_0=1.139870 62 | 63 | 64 | type=22 65 | object_name=#166601027 sell 0.02 EURUSD at 1.13987 stop loss at 1.14476 66 | period_flags=0 67 | create_time=1545650100 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545657300 78 | value_0=1.144760 79 | 80 | 81 | type=22 82 | object_name=#166601027 sell 0.02 EURUSD at 1.13987 take profit at 1.13498 83 | period_flags=0 84 | create_time=1545650100 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545657300 95 | value_0=1.134980 96 | 97 | 98 | type=22 99 | object_name=#166632882 sell 0.02 EURUSD at 1.14662 100 | period_flags=0 101 | create_time=1546001101 102 | description= 1(#8132303) (8132303) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1546008301 113 | value_0=1.146620 114 | 115 | 116 | type=22 117 | object_name=#166632882 sell 0.02 EURUSD at 1.14662 stop loss at 1.15211 118 | period_flags=0 119 | create_time=1546001101 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1546008301 130 | value_0=1.152110 131 | 132 | 133 | type=22 134 | object_name=#166632882 sell 0.02 EURUSD at 1.14662 take profit at 1.14113 135 | period_flags=0 136 | create_time=1546001101 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1546008301 147 | value_0=1.141130 148 | 149 | 150 | 151 | 152 | 153 | name=FALCON_F2\Falcon_F2 154 | flags=343 155 | window_num=0 156 | 157 | Header1=----------EA General Settings----------- 158 | MagicNumber=8139303 159 | TerminalType=0 160 | R_Management=true 161 | Slippage=3 162 | IsECNbroker=false 163 | OnJournaling=false 164 | EnableDashboard=true 165 | Header2=----------Trading Rules Variables ----------- 166 | RobotBehavior=daily 167 | usePredictedSL=false 168 | usePredictedTP=false 169 | TimeMaxHoldM1=75 170 | TimeMaxHoldM15=1125 171 | TimeMaxHoldM60=4500 172 | entryTriggerM1=20 173 | entryTriggerM15=50 174 | entryTriggerM60=100 175 | stopLossFactorM1=2.0 176 | stopLossFactorM15=0.8 177 | stopLossFactorM60=0.8 178 | takeProfFactorM1=1.0 179 | takeProfFactorM15=1.0 180 | takeProfFactorM60=1.0 181 | predictor_periodM1=1 182 | predictor_periodM15=15 183 | predictor_periodH1=60 184 | closeAllOnFridays=true 185 | use_market_type=true 186 | Header3=----------Position Sizing Settings----------- 187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 188 | Lots=0.0 189 | IsSizingOn=true 190 | Risk=1.0 191 | MaxPositionsAllowed=1 192 | Header4=----------TP & SL Settings----------- 193 | UseFixedStopLoss=true 194 | FixedStopLoss=0.0 195 | IsVolatilityStopOn=true 196 | VolBasedSLMultiplier=4.0 197 | UseFixedTakeProfit=true 198 | FixedTakeProfit=0.0 199 | IsVolatilityTakeProfitOn=true 200 | VolBasedTPMultiplier=6.0 201 | Header5=----------Hidden TP & SL Settings----------- 202 | UseHiddenStopLoss=false 203 | FixedStopLoss_Hidden=0.0 204 | IsVolatilityStopLossOn_Hidden=false 205 | VolBasedSLMultiplier_Hidden=0.0 206 | UseHiddenTakeProfit=false 207 | FixedTakeProfit_Hidden=0.0 208 | IsVolatilityTakeProfitOn_Hidden=false 209 | VolBasedTPMultiplier_Hidden=0.0 210 | Header6=----------Breakeven Stops Settings----------- 211 | UseBreakevenStops=false 212 | BreakevenBuffer=0.0 213 | Header7=----------Hidden Breakeven Stops Settings----------- 214 | UseHiddenBreakevenStops=false 215 | BreakevenBuffer_Hidden=0.0 216 | Header8=----------Trailing Stops Settings----------- 217 | UseTrailingStops=false 218 | TrailingStopDistance=0.0 219 | TrailingStopBuffer=0.0 220 | Header9=----------Hidden Trailing Stops Settings----------- 221 | UseHiddenTrailingStops=false 222 | TrailingStopDistance_Hidden=0.0 223 | TrailingStopBuffer_Hidden=0.0 224 | Header10=----------Volatility Trailing Stops Settings----------- 225 | UseVolTrailingStops=false 226 | VolTrailingDistMultiplier=0.0 227 | VolTrailingBuffMultiplier=0.0 228 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 229 | UseHiddenVolTrailing=false 230 | VolTrailingDistMultiplier_Hidden=0.0 231 | VolTrailingBuffMultiplier_Hidden=0.0 232 | Header12=----------Volatility Measurement Settings----------- 233 | atr_period=14 234 | Header13=----------Set Max Loss Limit----------- 235 | IsLossLimitActivated=false 236 | LossLimitPercent=50.0 237 | Header14=----------Set Max Volatility Limit----------- 238 | IsVolLimitActivated=false 239 | VolatilityMultiplier=3.0 240 | ATRTimeframe=60 241 | ATRPeriod=14 242 | 243 | 244 | 245 | 246 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart07.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133840 3 | comment=Trade is not allowed 4 | symbol=AUDUSD 5 | period=15 6 | leftpos=52567 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166643166 buy 0.03 AUDUSD at 0.70211 48 | period_flags=0 49 | create_time=1546403400 50 | description= 0(#8132306) (8132306) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1546410600 61 | value_0=0.702110 62 | 63 | 64 | type=22 65 | object_name=#166643166 buy 0.03 AUDUSD at 0.70211 stop loss at 0.69755 66 | period_flags=0 67 | create_time=1546403400 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1546410600 78 | value_0=0.697550 79 | 80 | 81 | type=22 82 | object_name=#166643166 buy 0.03 AUDUSD at 0.70211 take profit at 0.70667 83 | period_flags=0 84 | create_time=1546403400 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1546410600 95 | value_0=0.706670 96 | 97 | 98 | type=22 99 | object_name=#167284639 sell 0.05 AUDUSD at 0.70921 100 | period_flags=0 101 | create_time=1553767205 102 | description= 1(#8139306) (8139306) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1553774405 113 | value_0=0.709210 114 | 115 | 116 | type=22 117 | object_name=#167284639 sell 0.05 AUDUSD at 0.70921 stop loss at 0.71101 118 | period_flags=0 119 | create_time=1553767205 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1553774405 130 | value_0=0.711010 131 | 132 | 133 | type=22 134 | object_name=#167284639 sell 0.05 AUDUSD at 0.70921 take profit at 0.70696 135 | period_flags=0 136 | create_time=1553767205 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1553774405 147 | value_0=0.706960 148 | 149 | 150 | 151 | 152 | 153 | name=FALCON_F2\Falcon_F2 154 | flags=343 155 | window_num=0 156 | 157 | Header1=----------EA General Settings----------- 158 | MagicNumber=8139306 159 | TerminalType=0 160 | R_Management=true 161 | Slippage=3 162 | IsECNbroker=false 163 | OnJournaling=false 164 | EnableDashboard=true 165 | Header2=----------Trading Rules Variables ----------- 166 | RobotBehavior=daily 167 | usePredictedSL=false 168 | usePredictedTP=false 169 | TimeMaxHoldM1=75 170 | TimeMaxHoldM15=1125 171 | TimeMaxHoldM60=4500 172 | entryTriggerM1=20 173 | entryTriggerM15=50 174 | entryTriggerM60=100 175 | stopLossFactorM1=2.0 176 | stopLossFactorM15=0.8 177 | stopLossFactorM60=0.8 178 | takeProfFactorM1=1.0 179 | takeProfFactorM15=1.0 180 | takeProfFactorM60=1.0 181 | predictor_periodM1=1 182 | predictor_periodM15=15 183 | predictor_periodH1=60 184 | closeAllOnFridays=true 185 | use_market_type=true 186 | Header3=----------Position Sizing Settings----------- 187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 188 | Lots=0.0 189 | IsSizingOn=true 190 | Risk=1.0 191 | MaxPositionsAllowed=1 192 | Header4=----------TP & SL Settings----------- 193 | UseFixedStopLoss=true 194 | FixedStopLoss=0.0 195 | IsVolatilityStopOn=true 196 | VolBasedSLMultiplier=4.0 197 | UseFixedTakeProfit=true 198 | FixedTakeProfit=0.0 199 | IsVolatilityTakeProfitOn=true 200 | VolBasedTPMultiplier=6.0 201 | Header5=----------Hidden TP & SL Settings----------- 202 | UseHiddenStopLoss=false 203 | FixedStopLoss_Hidden=0.0 204 | IsVolatilityStopLossOn_Hidden=false 205 | VolBasedSLMultiplier_Hidden=0.0 206 | UseHiddenTakeProfit=false 207 | FixedTakeProfit_Hidden=0.0 208 | IsVolatilityTakeProfitOn_Hidden=false 209 | VolBasedTPMultiplier_Hidden=0.0 210 | Header6=----------Breakeven Stops Settings----------- 211 | UseBreakevenStops=false 212 | BreakevenBuffer=0.0 213 | Header7=----------Hidden Breakeven Stops Settings----------- 214 | UseHiddenBreakevenStops=false 215 | BreakevenBuffer_Hidden=0.0 216 | Header8=----------Trailing Stops Settings----------- 217 | UseTrailingStops=false 218 | TrailingStopDistance=0.0 219 | TrailingStopBuffer=0.0 220 | Header9=----------Hidden Trailing Stops Settings----------- 221 | UseHiddenTrailingStops=false 222 | TrailingStopDistance_Hidden=0.0 223 | TrailingStopBuffer_Hidden=0.0 224 | Header10=----------Volatility Trailing Stops Settings----------- 225 | UseVolTrailingStops=false 226 | VolTrailingDistMultiplier=0.0 227 | VolTrailingBuffMultiplier=0.0 228 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 229 | UseHiddenVolTrailing=false 230 | VolTrailingDistMultiplier_Hidden=0.0 231 | VolTrailingBuffMultiplier_Hidden=0.0 232 | Header12=----------Volatility Measurement Settings----------- 233 | atr_period=14 234 | Header13=----------Set Max Loss Limit----------- 235 | IsLossLimitActivated=false 236 | LossLimitPercent=50.0 237 | Header14=----------Set Max Volatility Limit----------- 238 | IsVolLimitActivated=false 239 | VolatilityMultiplier=3.0 240 | ATRTimeframe=60 241 | ATRPeriod=14 242 | 243 | 244 | 245 | 246 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart08.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133841 3 | comment=Trade is not allowed 4 | symbol=EURGBP 5 | period=15 6 | leftpos=47023 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166628750 sell 0.04 EURGBP at 0.90453 48 | period_flags=0 49 | create_time=1545961504 50 | description= 1(#8132307) (8132307) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545968704 61 | value_0=0.904530 62 | 63 | 64 | type=22 65 | object_name=#166628750 sell 0.04 EURGBP at 0.90453 stop loss at 0.90669 66 | period_flags=0 67 | create_time=1545961504 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545968704 78 | value_0=0.906690 79 | 80 | 81 | type=22 82 | object_name=#166628750 sell 0.04 EURGBP at 0.90453 take profit at 0.90237 83 | period_flags=0 84 | create_time=1545961504 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545968704 95 | value_0=0.902370 96 | 97 | 98 | type=22 99 | object_name=#166956297 buy 0.06 EURGBP at 0.87593 100 | period_flags=0 101 | create_time=1549607400 102 | description= 0(#8132307) (8132307) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549614600 113 | value_0=0.875930 114 | 115 | 116 | type=22 117 | object_name=#166956297 buy 0.06 EURGBP at 0.87593 stop loss at 0.87469 118 | period_flags=0 119 | create_time=1549607400 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549614600 130 | value_0=0.874690 131 | 132 | 133 | type=22 134 | object_name=#166956297 buy 0.06 EURGBP at 0.87593 take profit at 0.87717 135 | period_flags=0 136 | create_time=1549607400 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549614600 147 | value_0=0.877170 148 | 149 | 150 | 151 | 152 | 153 | name=FALCON_F2\Falcon_F2 154 | flags=343 155 | window_num=0 156 | 157 | Header1=----------EA General Settings----------- 158 | MagicNumber=8139307 159 | TerminalType=0 160 | R_Management=true 161 | Slippage=3 162 | IsECNbroker=false 163 | OnJournaling=false 164 | EnableDashboard=true 165 | Header2=----------Trading Rules Variables ----------- 166 | RobotBehavior=daily 167 | usePredictedSL=false 168 | usePredictedTP=false 169 | TimeMaxHoldM1=75 170 | TimeMaxHoldM15=1125 171 | TimeMaxHoldM60=4500 172 | entryTriggerM1=20 173 | entryTriggerM15=50 174 | entryTriggerM60=100 175 | stopLossFactorM1=2.0 176 | stopLossFactorM15=0.8 177 | stopLossFactorM60=0.8 178 | takeProfFactorM1=1.0 179 | takeProfFactorM15=1.0 180 | takeProfFactorM60=1.0 181 | predictor_periodM1=1 182 | predictor_periodM15=15 183 | predictor_periodH1=60 184 | closeAllOnFridays=true 185 | use_market_type=true 186 | Header3=----------Position Sizing Settings----------- 187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 188 | Lots=0.0 189 | IsSizingOn=true 190 | Risk=1.0 191 | MaxPositionsAllowed=1 192 | Header4=----------TP & SL Settings----------- 193 | UseFixedStopLoss=true 194 | FixedStopLoss=0.0 195 | IsVolatilityStopOn=true 196 | VolBasedSLMultiplier=4.0 197 | UseFixedTakeProfit=true 198 | FixedTakeProfit=0.0 199 | IsVolatilityTakeProfitOn=true 200 | VolBasedTPMultiplier=6.0 201 | Header5=----------Hidden TP & SL Settings----------- 202 | UseHiddenStopLoss=false 203 | FixedStopLoss_Hidden=0.0 204 | IsVolatilityStopLossOn_Hidden=false 205 | VolBasedSLMultiplier_Hidden=0.0 206 | UseHiddenTakeProfit=false 207 | FixedTakeProfit_Hidden=0.0 208 | IsVolatilityTakeProfitOn_Hidden=false 209 | VolBasedTPMultiplier_Hidden=0.0 210 | Header6=----------Breakeven Stops Settings----------- 211 | UseBreakevenStops=false 212 | BreakevenBuffer=0.0 213 | Header7=----------Hidden Breakeven Stops Settings----------- 214 | UseHiddenBreakevenStops=false 215 | BreakevenBuffer_Hidden=0.0 216 | Header8=----------Trailing Stops Settings----------- 217 | UseTrailingStops=false 218 | TrailingStopDistance=0.0 219 | TrailingStopBuffer=0.0 220 | Header9=----------Hidden Trailing Stops Settings----------- 221 | UseHiddenTrailingStops=false 222 | TrailingStopDistance_Hidden=0.0 223 | TrailingStopBuffer_Hidden=0.0 224 | Header10=----------Volatility Trailing Stops Settings----------- 225 | UseVolTrailingStops=false 226 | VolTrailingDistMultiplier=0.0 227 | VolTrailingBuffMultiplier=0.0 228 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 229 | UseHiddenVolTrailing=false 230 | VolTrailingDistMultiplier_Hidden=0.0 231 | VolTrailingBuffMultiplier_Hidden=0.0 232 | Header12=----------Volatility Measurement Settings----------- 233 | atr_period=14 234 | Header13=----------Set Max Loss Limit----------- 235 | IsLossLimitActivated=false 236 | LossLimitPercent=50.0 237 | Header14=----------Set Max Volatility Limit----------- 238 | IsVolLimitActivated=false 239 | VolatilityMultiplier=3.0 240 | ATRTimeframe=60 241 | ATRPeriod=14 242 | 243 | 244 | 245 | 246 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart17.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133850 3 | comment=Trade is not allowed 4 | symbol=AUDCHF 5 | period=15 6 | leftpos=47043 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166924997 buy 0.02 AUDCHF at 0.72093 48 | period_flags=0 49 | create_time=1549245600 50 | description= 0(#8132316) (8132316) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1549252800 61 | value_0=0.720930 62 | 63 | 64 | type=22 65 | object_name=#166924997 buy 0.02 AUDCHF at 0.72093 stop loss at 0.71673 66 | period_flags=0 67 | create_time=1549245600 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1549252800 78 | value_0=0.716730 79 | 80 | 81 | type=22 82 | object_name=#166924997 buy 0.02 AUDCHF at 0.72093 take profit at 0.72513 83 | period_flags=0 84 | create_time=1549245600 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1549252800 95 | value_0=0.725130 96 | 97 | 98 | type=22 99 | object_name=#166942554 sell 0.03 AUDCHF at 0.71290 100 | period_flags=0 101 | create_time=1549459800 102 | description= 1(#8132316) (8132316) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549467000 113 | value_0=0.712900 114 | 115 | 116 | type=22 117 | object_name=#166942554 sell 0.03 AUDCHF at 0.71290 stop loss at 0.71559 118 | period_flags=0 119 | create_time=1549459800 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549467000 130 | value_0=0.715590 131 | 132 | 133 | type=22 134 | object_name=#166942554 sell 0.03 AUDCHF at 0.71290 take profit at 0.71021 135 | period_flags=0 136 | create_time=1549459800 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549467000 147 | value_0=0.710210 148 | 149 | 150 | 151 | 152 | 153 | name=FALCON_F2\Falcon_F2 154 | flags=343 155 | window_num=0 156 | 157 | Header1=----------EA General Settings----------- 158 | MagicNumber=8139316 159 | TerminalType=0 160 | R_Management=true 161 | Slippage=3 162 | IsECNbroker=false 163 | OnJournaling=false 164 | EnableDashboard=true 165 | Header2=----------Trading Rules Variables ----------- 166 | RobotBehavior=daily 167 | usePredictedSL=false 168 | usePredictedTP=false 169 | TimeMaxHoldM1=75 170 | TimeMaxHoldM15=1125 171 | TimeMaxHoldM60=4500 172 | entryTriggerM1=20 173 | entryTriggerM15=50 174 | entryTriggerM60=100 175 | stopLossFactorM1=2.0 176 | stopLossFactorM15=0.8 177 | stopLossFactorM60=0.8 178 | takeProfFactorM1=1.0 179 | takeProfFactorM15=1.0 180 | takeProfFactorM60=1.0 181 | predictor_periodM1=1 182 | predictor_periodM15=15 183 | predictor_periodH1=60 184 | closeAllOnFridays=true 185 | use_market_type=true 186 | Header3=----------Position Sizing Settings----------- 187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 188 | Lots=0.0 189 | IsSizingOn=true 190 | Risk=1.0 191 | MaxPositionsAllowed=1 192 | Header4=----------TP & SL Settings----------- 193 | UseFixedStopLoss=true 194 | FixedStopLoss=0.0 195 | IsVolatilityStopOn=true 196 | VolBasedSLMultiplier=4.0 197 | UseFixedTakeProfit=true 198 | FixedTakeProfit=0.0 199 | IsVolatilityTakeProfitOn=true 200 | VolBasedTPMultiplier=6.0 201 | Header5=----------Hidden TP & SL Settings----------- 202 | UseHiddenStopLoss=false 203 | FixedStopLoss_Hidden=0.0 204 | IsVolatilityStopLossOn_Hidden=false 205 | VolBasedSLMultiplier_Hidden=0.0 206 | UseHiddenTakeProfit=false 207 | FixedTakeProfit_Hidden=0.0 208 | IsVolatilityTakeProfitOn_Hidden=false 209 | VolBasedTPMultiplier_Hidden=0.0 210 | Header6=----------Breakeven Stops Settings----------- 211 | UseBreakevenStops=false 212 | BreakevenBuffer=0.0 213 | Header7=----------Hidden Breakeven Stops Settings----------- 214 | UseHiddenBreakevenStops=false 215 | BreakevenBuffer_Hidden=0.0 216 | Header8=----------Trailing Stops Settings----------- 217 | UseTrailingStops=false 218 | TrailingStopDistance=0.0 219 | TrailingStopBuffer=0.0 220 | Header9=----------Hidden Trailing Stops Settings----------- 221 | UseHiddenTrailingStops=false 222 | TrailingStopDistance_Hidden=0.0 223 | TrailingStopBuffer_Hidden=0.0 224 | Header10=----------Volatility Trailing Stops Settings----------- 225 | UseVolTrailingStops=false 226 | VolTrailingDistMultiplier=0.0 227 | VolTrailingBuffMultiplier=0.0 228 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 229 | UseHiddenVolTrailing=false 230 | VolTrailingDistMultiplier_Hidden=0.0 231 | VolTrailingBuffMultiplier_Hidden=0.0 232 | Header12=----------Volatility Measurement Settings----------- 233 | atr_period=14 234 | Header13=----------Set Max Loss Limit----------- 235 | IsLossLimitActivated=false 236 | LossLimitPercent=50.0 237 | Header14=----------Set Max Volatility Limit----------- 238 | IsVolLimitActivated=false 239 | VolatilityMultiplier=3.0 240 | ATRTimeframe=60 241 | ATRPeriod=14 242 | 243 | 244 | 245 | 246 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart24.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133857 3 | comment=Trade is not allowed 4 | symbol=NZDUSD 5 | period=15 6 | leftpos=44995 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166925208 sell 0.03 NZDUSD at 0.68971 48 | period_flags=0 49 | create_time=1549251000 50 | description= 1(#8132323) (8132323) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1549258200 61 | value_0=0.689710 62 | 63 | 64 | type=22 65 | object_name=#166925208 sell 0.03 NZDUSD at 0.68971 stop loss at 0.69286 66 | period_flags=0 67 | create_time=1549251000 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1549258200 78 | value_0=0.692860 79 | 80 | 81 | type=22 82 | object_name=#166925208 sell 0.03 NZDUSD at 0.68971 take profit at 0.68656 83 | period_flags=0 84 | create_time=1549251000 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1549258200 95 | value_0=0.686560 96 | 97 | 98 | type=22 99 | object_name=#166946581 buy 0.03 NZDUSD at 0.67507 100 | period_flags=0 101 | create_time=1549515602 102 | description= 0(#8132323) (8132323) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549522802 113 | value_0=0.675070 114 | 115 | 116 | type=22 117 | object_name=#166946581 buy 0.03 NZDUSD at 0.67507 stop loss at 0.67237 118 | period_flags=0 119 | create_time=1549515602 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549522802 130 | value_0=0.672370 131 | 132 | 133 | type=22 134 | object_name=#166946581 buy 0.03 NZDUSD at 0.67507 take profit at 0.67777 135 | period_flags=0 136 | create_time=1549515602 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549522802 147 | value_0=0.677770 148 | 149 | 150 | type=22 151 | object_name=#166946581 buy 0.03 NZDUSD at 0.67507 close at 0.67479 152 | period_flags=0 153 | create_time=1549659600 154 | color=16711680 155 | weight=1 156 | background=0 157 | symbol_code=3 158 | anchor_pos=0 159 | filling=0 160 | selectable=1 161 | hidden=0 162 | zorder=0 163 | time_0=1549666800 164 | value_0=0.674790 165 | 166 | 167 | type=2 168 | object_name=#166946581 0.67507 -> 0.67479 169 | period_flags=0 170 | create_time=1549659600 171 | color=16711680 172 | style=2 173 | weight=1 174 | background=0 175 | filling=0 176 | selectable=1 177 | hidden=0 178 | zorder=0 179 | time_0=1549522802 180 | value_0=0.675070 181 | time_1=1549666800 182 | value_1=0.674790 183 | ray=0 184 | 185 | 186 | 187 | 188 | 189 | name=FALCON_F2\Falcon_F2 190 | flags=343 191 | window_num=0 192 | 193 | Header1=----------EA General Settings----------- 194 | MagicNumber=8139323 195 | TerminalType=0 196 | R_Management=true 197 | Slippage=3 198 | IsECNbroker=false 199 | OnJournaling=false 200 | EnableDashboard=true 201 | Header2=----------Trading Rules Variables ----------- 202 | RobotBehavior=daily 203 | usePredictedSL=false 204 | usePredictedTP=false 205 | TimeMaxHoldM1=75 206 | TimeMaxHoldM15=1125 207 | TimeMaxHoldM60=4500 208 | entryTriggerM1=20 209 | entryTriggerM15=50 210 | entryTriggerM60=100 211 | stopLossFactorM1=2.0 212 | stopLossFactorM15=0.8 213 | stopLossFactorM60=0.8 214 | takeProfFactorM1=1.0 215 | takeProfFactorM15=1.0 216 | takeProfFactorM60=1.0 217 | predictor_periodM1=1 218 | predictor_periodM15=15 219 | predictor_periodH1=60 220 | closeAllOnFridays=true 221 | use_market_type=true 222 | Header3=----------Position Sizing Settings----------- 223 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 224 | Lots=0.0 225 | IsSizingOn=true 226 | Risk=1.0 227 | MaxPositionsAllowed=1 228 | Header4=----------TP & SL Settings----------- 229 | UseFixedStopLoss=true 230 | FixedStopLoss=0.0 231 | IsVolatilityStopOn=true 232 | VolBasedSLMultiplier=4.0 233 | UseFixedTakeProfit=true 234 | FixedTakeProfit=0.0 235 | IsVolatilityTakeProfitOn=true 236 | VolBasedTPMultiplier=6.0 237 | Header5=----------Hidden TP & SL Settings----------- 238 | UseHiddenStopLoss=false 239 | FixedStopLoss_Hidden=0.0 240 | IsVolatilityStopLossOn_Hidden=false 241 | VolBasedSLMultiplier_Hidden=0.0 242 | UseHiddenTakeProfit=false 243 | FixedTakeProfit_Hidden=0.0 244 | IsVolatilityTakeProfitOn_Hidden=false 245 | VolBasedTPMultiplier_Hidden=0.0 246 | Header6=----------Breakeven Stops Settings----------- 247 | UseBreakevenStops=false 248 | BreakevenBuffer=0.0 249 | Header7=----------Hidden Breakeven Stops Settings----------- 250 | UseHiddenBreakevenStops=false 251 | BreakevenBuffer_Hidden=0.0 252 | Header8=----------Trailing Stops Settings----------- 253 | UseTrailingStops=false 254 | TrailingStopDistance=0.0 255 | TrailingStopBuffer=0.0 256 | Header9=----------Hidden Trailing Stops Settings----------- 257 | UseHiddenTrailingStops=false 258 | TrailingStopDistance_Hidden=0.0 259 | TrailingStopBuffer_Hidden=0.0 260 | Header10=----------Volatility Trailing Stops Settings----------- 261 | UseVolTrailingStops=false 262 | VolTrailingDistMultiplier=0.0 263 | VolTrailingBuffMultiplier=0.0 264 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 265 | UseHiddenVolTrailing=false 266 | VolTrailingDistMultiplier_Hidden=0.0 267 | VolTrailingBuffMultiplier_Hidden=0.0 268 | Header12=----------Volatility Measurement Settings----------- 269 | atr_period=14 270 | Header13=----------Set Max Loss Limit----------- 271 | IsLossLimitActivated=false 272 | LossLimitPercent=50.0 273 | Header14=----------Set Max Volatility Limit----------- 274 | IsVolLimitActivated=false 275 | VolatilityMultiplier=3.0 276 | ATRTimeframe=60 277 | ATRPeriod=14 278 | 279 | 280 | 281 | 282 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart28.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133861 3 | comment=Trade is not allowed 4 | symbol=GBPNZD 5 | period=15 6 | leftpos=44996 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166655827 sell 0.01 GBPNZD at 1.89172 48 | period_flags=0 49 | create_time=1546480800 50 | description= 1(#8132327) (8132327) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1546488000 61 | value_0=1.891720 62 | 63 | 64 | type=22 65 | object_name=#166655827 sell 0.01 GBPNZD at 1.89172 stop loss at 1.96345 66 | period_flags=0 67 | create_time=1546480800 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1546488000 78 | value_0=1.963450 79 | 80 | 81 | type=22 82 | object_name=#166655827 sell 0.01 GBPNZD at 1.89172 take profit at 1.81999 83 | period_flags=0 84 | create_time=1546480800 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1546488000 95 | value_0=1.819990 96 | 97 | 98 | type=22 99 | object_name=#166924695 sell 0.01 GBPNZD at 1.89566 100 | period_flags=0 101 | create_time=1549238400 102 | description= 1(#8132327) (8132327) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549245600 113 | value_0=1.895660 114 | 115 | 116 | type=22 117 | object_name=#166924695 sell 0.01 GBPNZD at 1.89566 stop loss at 1.90609 118 | period_flags=0 119 | create_time=1549238400 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549245600 130 | value_0=1.906090 131 | 132 | 133 | type=22 134 | object_name=#166924695 sell 0.01 GBPNZD at 1.89566 take profit at 1.88523 135 | period_flags=0 136 | create_time=1549238400 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549245600 147 | value_0=1.885230 148 | 149 | 150 | type=22 151 | object_name=#166943769 sell 0.01 GBPNZD at 1.89383 152 | period_flags=0 153 | create_time=1549470600 154 | description= 1(#8132327) (8132327) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1549477800 165 | value_0=1.893830 166 | 167 | 168 | type=22 169 | object_name=#166943769 sell 0.01 GBPNZD at 1.89383 stop loss at 1.90468 170 | period_flags=0 171 | create_time=1549470600 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1549477800 182 | value_0=1.904680 183 | 184 | 185 | type=22 186 | object_name=#166943769 sell 0.01 GBPNZD at 1.89383 take profit at 1.88298 187 | period_flags=0 188 | create_time=1549470600 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1549477800 199 | value_0=1.882980 200 | 201 | 202 | 203 | 204 | 205 | name=FALCON_F2\Falcon_F2 206 | flags=343 207 | window_num=0 208 | 209 | Header1=----------EA General Settings----------- 210 | MagicNumber=8139327 211 | TerminalType=0 212 | R_Management=true 213 | Slippage=3 214 | IsECNbroker=false 215 | OnJournaling=false 216 | EnableDashboard=true 217 | Header2=----------Trading Rules Variables ----------- 218 | RobotBehavior=daily 219 | usePredictedSL=false 220 | usePredictedTP=false 221 | TimeMaxHoldM1=75 222 | TimeMaxHoldM15=1125 223 | TimeMaxHoldM60=4500 224 | entryTriggerM1=20 225 | entryTriggerM15=50 226 | entryTriggerM60=100 227 | stopLossFactorM1=2.0 228 | stopLossFactorM15=0.8 229 | stopLossFactorM60=0.8 230 | takeProfFactorM1=1.0 231 | takeProfFactorM15=1.0 232 | takeProfFactorM60=1.0 233 | predictor_periodM1=1 234 | predictor_periodM15=15 235 | predictor_periodH1=60 236 | closeAllOnFridays=true 237 | use_market_type=true 238 | Header3=----------Position Sizing Settings----------- 239 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 240 | Lots=0.0 241 | IsSizingOn=true 242 | Risk=1.0 243 | MaxPositionsAllowed=1 244 | Header4=----------TP & SL Settings----------- 245 | UseFixedStopLoss=true 246 | FixedStopLoss=0.0 247 | IsVolatilityStopOn=true 248 | VolBasedSLMultiplier=4.0 249 | UseFixedTakeProfit=true 250 | FixedTakeProfit=0.0 251 | IsVolatilityTakeProfitOn=true 252 | VolBasedTPMultiplier=6.0 253 | Header5=----------Hidden TP & SL Settings----------- 254 | UseHiddenStopLoss=false 255 | FixedStopLoss_Hidden=0.0 256 | IsVolatilityStopLossOn_Hidden=false 257 | VolBasedSLMultiplier_Hidden=0.0 258 | UseHiddenTakeProfit=false 259 | FixedTakeProfit_Hidden=0.0 260 | IsVolatilityTakeProfitOn_Hidden=false 261 | VolBasedTPMultiplier_Hidden=0.0 262 | Header6=----------Breakeven Stops Settings----------- 263 | UseBreakevenStops=false 264 | BreakevenBuffer=0.0 265 | Header7=----------Hidden Breakeven Stops Settings----------- 266 | UseHiddenBreakevenStops=false 267 | BreakevenBuffer_Hidden=0.0 268 | Header8=----------Trailing Stops Settings----------- 269 | UseTrailingStops=false 270 | TrailingStopDistance=0.0 271 | TrailingStopBuffer=0.0 272 | Header9=----------Hidden Trailing Stops Settings----------- 273 | UseHiddenTrailingStops=false 274 | TrailingStopDistance_Hidden=0.0 275 | TrailingStopBuffer_Hidden=0.0 276 | Header10=----------Volatility Trailing Stops Settings----------- 277 | UseVolTrailingStops=false 278 | VolTrailingDistMultiplier=0.0 279 | VolTrailingBuffMultiplier=0.0 280 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 281 | UseHiddenVolTrailing=false 282 | VolTrailingDistMultiplier_Hidden=0.0 283 | VolTrailingBuffMultiplier_Hidden=0.0 284 | Header12=----------Volatility Measurement Settings----------- 285 | atr_period=14 286 | Header13=----------Set Max Loss Limit----------- 287 | IsLossLimitActivated=false 288 | LossLimitPercent=50.0 289 | Header14=----------Set Max Volatility Limit----------- 290 | IsVolLimitActivated=false 291 | VolatilityMultiplier=3.0 292 | ATRTimeframe=60 293 | ATRPeriod=14 294 | 295 | 296 | 297 | 298 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart29.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133862 3 | comment=Trade is not allowed 4 | symbol=NZDCAD 5 | period=15 6 | leftpos=44891 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=3 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166650194 sell 0.04 NZDCAD at 0.90353 48 | period_flags=0 49 | create_time=1546466490 50 | description= 1(#8132328) (8132328) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1546473689 61 | value_0=0.903530 62 | 63 | 64 | type=22 65 | object_name=#166650194 sell 0.04 NZDCAD at 0.90353 stop loss at 0.90749 66 | period_flags=0 67 | create_time=1546466490 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1546473689 78 | value_0=0.907490 79 | 80 | 81 | type=22 82 | object_name=#166650194 sell 0.04 NZDCAD at 0.90353 take profit at 0.89957 83 | period_flags=0 84 | create_time=1546466490 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1546473689 95 | value_0=0.899570 96 | 97 | 98 | type=22 99 | object_name=#166652886 sell 0.01 NZDCAD at 0.89995 100 | period_flags=0 101 | create_time=1546470000 102 | description= 1(#8132328) (8132328) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1546477200 113 | value_0=0.899950 114 | 115 | 116 | type=22 117 | object_name=#166652886 sell 0.01 NZDCAD at 0.89995 stop loss at 0.92267 118 | period_flags=0 119 | create_time=1546470000 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1546477200 130 | value_0=0.922670 131 | 132 | 133 | type=22 134 | object_name=#166652886 sell 0.01 NZDCAD at 0.89995 take profit at 0.87723 135 | period_flags=0 136 | create_time=1546470000 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1546477200 147 | value_0=0.877230 148 | 149 | 150 | type=22 151 | object_name=#167299944 buy 0.03 NZDCAD at 0.91092 152 | period_flags=0 153 | create_time=1553827501 154 | description= 0(#8139328) (8139328) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1553834701 165 | value_0=0.910920 166 | 167 | 168 | type=22 169 | object_name=#167299944 buy 0.03 NZDCAD at 0.91092 stop loss at 0.90676 170 | period_flags=0 171 | create_time=1553827501 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1553834701 182 | value_0=0.906760 183 | 184 | 185 | type=22 186 | object_name=#167299944 buy 0.03 NZDCAD at 0.91092 take profit at 0.91612 187 | period_flags=0 188 | create_time=1553827501 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1553834701 199 | value_0=0.916120 200 | 201 | 202 | type=22 203 | object_name=#167299944 buy 0.03 NZDCAD at 0.91092 close at 0.90978 204 | period_flags=0 205 | create_time=1553889600 206 | color=16711680 207 | weight=1 208 | background=0 209 | symbol_code=3 210 | anchor_pos=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1553896800 216 | value_0=0.909780 217 | 218 | 219 | type=2 220 | object_name=#167299944 0.91092 -> 0.90978 221 | period_flags=0 222 | create_time=1553889600 223 | color=16711680 224 | style=2 225 | weight=1 226 | background=0 227 | filling=0 228 | selectable=1 229 | hidden=0 230 | zorder=0 231 | time_0=1553834701 232 | value_0=0.910920 233 | time_1=1553896800 234 | value_1=0.909780 235 | ray=0 236 | 237 | 238 | 239 | 240 | 241 | name=FALCON_F2\Falcon_F2 242 | flags=343 243 | window_num=0 244 | 245 | Header1=----------EA General Settings----------- 246 | MagicNumber=8139328 247 | TerminalType=0 248 | R_Management=true 249 | Slippage=3 250 | IsECNbroker=false 251 | OnJournaling=false 252 | EnableDashboard=true 253 | Header2=----------Trading Rules Variables ----------- 254 | RobotBehavior=daily 255 | usePredictedSL=false 256 | usePredictedTP=false 257 | TimeMaxHoldM1=75 258 | TimeMaxHoldM15=1125 259 | TimeMaxHoldM60=4500 260 | entryTriggerM1=20 261 | entryTriggerM15=50 262 | entryTriggerM60=100 263 | stopLossFactorM1=2.0 264 | stopLossFactorM15=0.8 265 | stopLossFactorM60=0.8 266 | takeProfFactorM1=1.0 267 | takeProfFactorM15=1.0 268 | takeProfFactorM60=1.0 269 | predictor_periodM1=1 270 | predictor_periodM15=15 271 | predictor_periodH1=60 272 | closeAllOnFridays=true 273 | use_market_type=true 274 | Header3=----------Position Sizing Settings----------- 275 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 276 | Lots=0.0 277 | IsSizingOn=true 278 | Risk=1.0 279 | MaxPositionsAllowed=1 280 | Header4=----------TP & SL Settings----------- 281 | UseFixedStopLoss=true 282 | FixedStopLoss=0.0 283 | IsVolatilityStopOn=true 284 | VolBasedSLMultiplier=4.0 285 | UseFixedTakeProfit=true 286 | FixedTakeProfit=0.0 287 | IsVolatilityTakeProfitOn=true 288 | VolBasedTPMultiplier=6.0 289 | Header5=----------Hidden TP & SL Settings----------- 290 | UseHiddenStopLoss=false 291 | FixedStopLoss_Hidden=0.0 292 | IsVolatilityStopLossOn_Hidden=false 293 | VolBasedSLMultiplier_Hidden=0.0 294 | UseHiddenTakeProfit=false 295 | FixedTakeProfit_Hidden=0.0 296 | IsVolatilityTakeProfitOn_Hidden=false 297 | VolBasedTPMultiplier_Hidden=0.0 298 | Header6=----------Breakeven Stops Settings----------- 299 | UseBreakevenStops=false 300 | BreakevenBuffer=0.0 301 | Header7=----------Hidden Breakeven Stops Settings----------- 302 | UseHiddenBreakevenStops=false 303 | BreakevenBuffer_Hidden=0.0 304 | Header8=----------Trailing Stops Settings----------- 305 | UseTrailingStops=false 306 | TrailingStopDistance=0.0 307 | TrailingStopBuffer=0.0 308 | Header9=----------Hidden Trailing Stops Settings----------- 309 | UseHiddenTrailingStops=false 310 | TrailingStopDistance_Hidden=0.0 311 | TrailingStopBuffer_Hidden=0.0 312 | Header10=----------Volatility Trailing Stops Settings----------- 313 | UseVolTrailingStops=false 314 | VolTrailingDistMultiplier=0.0 315 | VolTrailingBuffMultiplier=0.0 316 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 317 | UseHiddenVolTrailing=false 318 | VolTrailingDistMultiplier_Hidden=0.0 319 | VolTrailingBuffMultiplier_Hidden=0.0 320 | Header12=----------Volatility Measurement Settings----------- 321 | atr_period=14 322 | Header13=----------Set Max Loss Limit----------- 323 | IsLossLimitActivated=false 324 | LossLimitPercent=50.0 325 | Header14=----------Set Max Volatility Limit----------- 326 | IsVolLimitActivated=false 327 | VolatilityMultiplier=3.0 328 | ATRTimeframe=60 329 | ATRPeriod=14 330 | 331 | 332 | 333 | 334 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart05.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133838 3 | comment=Trade is not allowed 4 | symbol=USDJPY 5 | period=15 6 | leftpos=57787 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#167259519 sell 0.06 USDJPY at 110.468 48 | period_flags=0 49 | create_time=1553605200 50 | description= 1(#8139304) (8139304) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1553612400 61 | value_0=110.468000 62 | 63 | 64 | type=22 65 | object_name=#167259519 sell 0.06 USDJPY at 110.468 stop loss at 110.642 66 | period_flags=0 67 | create_time=1553605200 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1553612400 78 | value_0=110.642000 79 | 80 | 81 | type=22 82 | object_name=#167259519 sell 0.06 USDJPY at 110.468 take profit at 110.250 83 | period_flags=0 84 | create_time=1553605200 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1553612400 95 | value_0=110.250000 96 | 97 | 98 | type=22 99 | object_name=#167298748 sell 0.04 USDJPY at 110.650 100 | period_flags=0 101 | create_time=1553813100 102 | description= 1(#8139304) (8139304) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1553820300 113 | value_0=110.650000 114 | 115 | 116 | type=22 117 | object_name=#167298748 sell 0.04 USDJPY at 110.650 stop loss at 110.914 118 | period_flags=0 119 | create_time=1553813100 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1553820300 130 | value_0=110.914000 131 | 132 | 133 | type=22 134 | object_name=#167298748 sell 0.04 USDJPY at 110.650 take profit at 110.320 135 | period_flags=0 136 | create_time=1553813100 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1553820300 147 | value_0=110.320000 148 | 149 | 150 | type=22 151 | object_name=#167307984 buy 0.06 USDJPY at 110.686 152 | period_flags=0 153 | create_time=1553875200 154 | description= 0(#8139304) (8139304) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1553882400 165 | value_0=110.686000 166 | 167 | 168 | type=22 169 | object_name=#167307984 buy 0.06 USDJPY at 110.686 stop loss at 110.507 170 | period_flags=0 171 | create_time=1553875200 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1553882400 182 | value_0=110.507000 183 | 184 | 185 | type=22 186 | object_name=#167307984 buy 0.06 USDJPY at 110.686 take profit at 110.910 187 | period_flags=0 188 | create_time=1553875200 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1553882400 199 | value_0=110.910000 200 | 201 | 202 | type=22 203 | object_name=#167307984 buy 0.06 USDJPY at 110.686 close at 110.810 204 | period_flags=0 205 | create_time=1553889600 206 | color=16711680 207 | weight=1 208 | background=0 209 | symbol_code=3 210 | anchor_pos=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1553896800 216 | value_0=110.810000 217 | 218 | 219 | type=2 220 | object_name=#167307984 110.686 -> 110.810 221 | period_flags=0 222 | create_time=1553889600 223 | color=16711680 224 | style=2 225 | weight=1 226 | background=0 227 | filling=0 228 | selectable=1 229 | hidden=0 230 | zorder=0 231 | time_0=1553882400 232 | value_0=110.686000 233 | time_1=1553896800 234 | value_1=110.810000 235 | ray=0 236 | 237 | 238 | 239 | 240 | 241 | name=FALCON_F2\Falcon_F2 242 | flags=343 243 | window_num=0 244 | 245 | Header1=----------EA General Settings----------- 246 | MagicNumber=8139304 247 | TerminalType=0 248 | R_Management=true 249 | Slippage=3 250 | IsECNbroker=false 251 | OnJournaling=false 252 | EnableDashboard=true 253 | Header2=----------Trading Rules Variables ----------- 254 | RobotBehavior=daily 255 | usePredictedSL=false 256 | usePredictedTP=false 257 | TimeMaxHoldM1=75 258 | TimeMaxHoldM15=1125 259 | TimeMaxHoldM60=4500 260 | entryTriggerM1=20 261 | entryTriggerM15=50 262 | entryTriggerM60=100 263 | stopLossFactorM1=2.0 264 | stopLossFactorM15=0.8 265 | stopLossFactorM60=0.8 266 | takeProfFactorM1=1.0 267 | takeProfFactorM15=1.0 268 | takeProfFactorM60=1.0 269 | predictor_periodM1=1 270 | predictor_periodM15=15 271 | predictor_periodH1=60 272 | closeAllOnFridays=true 273 | use_market_type=true 274 | Header3=----------Position Sizing Settings----------- 275 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 276 | Lots=0.0 277 | IsSizingOn=true 278 | Risk=1.0 279 | MaxPositionsAllowed=1 280 | Header4=----------TP & SL Settings----------- 281 | UseFixedStopLoss=true 282 | FixedStopLoss=0.0 283 | IsVolatilityStopOn=true 284 | VolBasedSLMultiplier=4.0 285 | UseFixedTakeProfit=true 286 | FixedTakeProfit=0.0 287 | IsVolatilityTakeProfitOn=true 288 | VolBasedTPMultiplier=6.0 289 | Header5=----------Hidden TP & SL Settings----------- 290 | UseHiddenStopLoss=false 291 | FixedStopLoss_Hidden=0.0 292 | IsVolatilityStopLossOn_Hidden=false 293 | VolBasedSLMultiplier_Hidden=0.0 294 | UseHiddenTakeProfit=false 295 | FixedTakeProfit_Hidden=0.0 296 | IsVolatilityTakeProfitOn_Hidden=false 297 | VolBasedTPMultiplier_Hidden=0.0 298 | Header6=----------Breakeven Stops Settings----------- 299 | UseBreakevenStops=false 300 | BreakevenBuffer=0.0 301 | Header7=----------Hidden Breakeven Stops Settings----------- 302 | UseHiddenBreakevenStops=false 303 | BreakevenBuffer_Hidden=0.0 304 | Header8=----------Trailing Stops Settings----------- 305 | UseTrailingStops=false 306 | TrailingStopDistance=0.0 307 | TrailingStopBuffer=0.0 308 | Header9=----------Hidden Trailing Stops Settings----------- 309 | UseHiddenTrailingStops=false 310 | TrailingStopDistance_Hidden=0.0 311 | TrailingStopBuffer_Hidden=0.0 312 | Header10=----------Volatility Trailing Stops Settings----------- 313 | UseVolTrailingStops=false 314 | VolTrailingDistMultiplier=0.0 315 | VolTrailingBuffMultiplier=0.0 316 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 317 | UseHiddenVolTrailing=false 318 | VolTrailingDistMultiplier_Hidden=0.0 319 | VolTrailingBuffMultiplier_Hidden=0.0 320 | Header12=----------Volatility Measurement Settings----------- 321 | atr_period=14 322 | Header13=----------Set Max Loss Limit----------- 323 | IsLossLimitActivated=false 324 | LossLimitPercent=50.0 325 | Header14=----------Set Max Volatility Limit----------- 326 | IsVolLimitActivated=false 327 | VolatilityMultiplier=3.0 328 | ATRTimeframe=60 329 | ATRPeriod=14 330 | 331 | 332 | 333 | 334 | -------------------------------------------------------------------------------- /mt4_profile/T1_FALCON_F2/chart13.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925660681570 3 | comment=Trade is allowed 4 | symbol=CADJPY 5 | period=15 6 | leftpos=56929 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#167282544 sell 0.01 CADJPY at 82.151 48 | period_flags=0 49 | create_time=1553759100 50 | description= 1(#8139112) (8139112) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1553766300 61 | value_0=82.151000 62 | 63 | 64 | type=22 65 | object_name=#167282544 sell 0.01 CADJPY at 82.151 stop loss at 82.349 66 | period_flags=0 67 | create_time=1553759100 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1553766300 78 | value_0=82.349000 79 | 80 | 81 | type=22 82 | object_name=#167282544 sell 0.01 CADJPY at 82.151 take profit at 81.904 83 | period_flags=0 84 | create_time=1553759100 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1553766300 95 | value_0=81.904000 96 | 97 | 98 | type=22 99 | object_name=#167284794 sell 0.01 CADJPY at 82.188 100 | period_flags=0 101 | create_time=1553768100 102 | description= 1(#8139112) (8139112) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1553775300 113 | value_0=82.188000 114 | 115 | 116 | type=22 117 | object_name=#167284794 sell 0.01 CADJPY at 82.188 stop loss at 82.395 118 | period_flags=0 119 | create_time=1553768100 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1553775300 130 | value_0=82.395000 131 | 132 | 133 | type=22 134 | object_name=#167284794 sell 0.01 CADJPY at 82.188 take profit at 81.930 135 | period_flags=0 136 | create_time=1553768100 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1553775300 147 | value_0=81.930000 148 | 149 | 150 | type=22 151 | object_name=#167285463 sell 0.01 CADJPY at 82.135 152 | period_flags=0 153 | create_time=1553771700 154 | description= 1(#8139112) (8139112) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1553778900 165 | value_0=82.135000 166 | 167 | 168 | type=22 169 | object_name=#167285463 sell 0.01 CADJPY at 82.135 stop loss at 82.403 170 | period_flags=0 171 | create_time=1553771700 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1553778900 182 | value_0=82.403000 183 | 184 | 185 | type=22 186 | object_name=#167285463 sell 0.01 CADJPY at 82.135 take profit at 81.800 187 | period_flags=0 188 | create_time=1553771700 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1553778900 199 | value_0=81.800000 200 | 201 | 202 | type=22 203 | object_name=#167288707 sell 0.01 CADJPY at 82.164 204 | period_flags=0 205 | create_time=1553774400 206 | description= 1(#8139112) (8139112) 207 | color=32768 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1553781600 217 | value_0=82.164000 218 | 219 | 220 | type=22 221 | object_name=#167288707 sell 0.01 CADJPY at 82.164 stop loss at 82.349 222 | period_flags=0 223 | create_time=1553774400 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1553781600 234 | value_0=82.349000 235 | 236 | 237 | type=22 238 | object_name=#167288707 sell 0.01 CADJPY at 82.164 take profit at 81.933 239 | period_flags=0 240 | create_time=1553774400 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1553781600 251 | value_0=81.933000 252 | 253 | 254 | 255 | 256 | 257 | name=FALCON_F2\Falcon_F2 258 | flags=343 259 | window_num=0 260 | 261 | Header1=----------EA General Settings----------- 262 | MagicNumber=8139112 263 | TerminalType=1 264 | R_Management=true 265 | Slippage=3 266 | IsECNbroker=false 267 | OnJournaling=false 268 | EnableDashboard=true 269 | Header2=----------Trading Rules Variables ----------- 270 | RobotBehavior=daily 271 | usePredictedSL=false 272 | usePredictedTP=false 273 | TimeMaxHoldM1=75 274 | TimeMaxHoldM15=1125 275 | TimeMaxHoldM60=4500 276 | entryTriggerM1=20 277 | entryTriggerM15=50 278 | entryTriggerM60=100 279 | stopLossFactorM1=2.0 280 | stopLossFactorM15=0.8 281 | stopLossFactorM60=0.8 282 | takeProfFactorM1=1.0 283 | takeProfFactorM15=1.0 284 | takeProfFactorM60=1.0 285 | predictor_periodM1=1 286 | predictor_periodM15=15 287 | predictor_periodH1=60 288 | closeAllOnFridays=true 289 | use_market_type=true 290 | Header3=----------Position Sizing Settings----------- 291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 292 | Lots=0.01 293 | IsSizingOn=false 294 | Risk=1.0 295 | MaxPositionsAllowed=25 296 | Header4=----------TP & SL Settings----------- 297 | UseFixedStopLoss=true 298 | FixedStopLoss=0.0 299 | IsVolatilityStopOn=true 300 | VolBasedSLMultiplier=4.0 301 | UseFixedTakeProfit=true 302 | FixedTakeProfit=0.0 303 | IsVolatilityTakeProfitOn=true 304 | VolBasedTPMultiplier=6.0 305 | Header5=----------Hidden TP & SL Settings----------- 306 | UseHiddenStopLoss=false 307 | FixedStopLoss_Hidden=0.0 308 | IsVolatilityStopLossOn_Hidden=false 309 | VolBasedSLMultiplier_Hidden=0.0 310 | UseHiddenTakeProfit=false 311 | FixedTakeProfit_Hidden=0.0 312 | IsVolatilityTakeProfitOn_Hidden=false 313 | VolBasedTPMultiplier_Hidden=0.0 314 | Header6=----------Breakeven Stops Settings----------- 315 | UseBreakevenStops=false 316 | BreakevenBuffer=0.0 317 | Header7=----------Hidden Breakeven Stops Settings----------- 318 | UseHiddenBreakevenStops=false 319 | BreakevenBuffer_Hidden=0.0 320 | Header8=----------Trailing Stops Settings----------- 321 | UseTrailingStops=false 322 | TrailingStopDistance=0.0 323 | TrailingStopBuffer=0.0 324 | Header9=----------Hidden Trailing Stops Settings----------- 325 | UseHiddenTrailingStops=false 326 | TrailingStopDistance_Hidden=0.0 327 | TrailingStopBuffer_Hidden=0.0 328 | Header10=----------Volatility Trailing Stops Settings----------- 329 | UseVolTrailingStops=false 330 | VolTrailingDistMultiplier=0.0 331 | VolTrailingBuffMultiplier=0.0 332 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 333 | UseHiddenVolTrailing=false 334 | VolTrailingDistMultiplier_Hidden=0.0 335 | VolTrailingBuffMultiplier_Hidden=0.0 336 | Header12=----------Volatility Measurement Settings----------- 337 | atr_period=14 338 | Header13=----------Set Max Loss Limit----------- 339 | IsLossLimitActivated=false 340 | LossLimitPercent=50.0 341 | Header14=----------Set Max Volatility Limit----------- 342 | IsVolLimitActivated=false 343 | VolatilityMultiplier=3.0 344 | ATRTimeframe=60 345 | ATRPeriod=14 346 | 347 | 348 | 349 | 350 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart18.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133851 3 | comment=Trade is not allowed 4 | symbol=AUDJPY 5 | period=15 6 | leftpos=57140 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166599488 sell 0.04 AUDJPY at 78.446 48 | period_flags=0 49 | create_time=1545632100 50 | description= 1(#8132317) (8132317) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545639300 61 | value_0=78.446000 62 | 63 | 64 | type=22 65 | object_name=#166599488 sell 0.04 AUDJPY at 78.446 stop loss at 78.742 66 | period_flags=0 67 | create_time=1545632100 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545639300 78 | value_0=78.742000 79 | 80 | 81 | type=22 82 | object_name=#166599488 sell 0.04 AUDJPY at 78.446 take profit at 78.150 83 | period_flags=0 84 | create_time=1545632100 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545639300 95 | value_0=78.150000 96 | 97 | 98 | type=22 99 | object_name=#166604352 sell 0.02 AUDJPY at 77.853 100 | period_flags=0 101 | create_time=1545667200 102 | description= 1(#8132317) (8132317) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1545674400 113 | value_0=77.853000 114 | 115 | 116 | type=22 117 | object_name=#166604352 sell 0.02 AUDJPY at 77.853 stop loss at 78.541 118 | period_flags=0 119 | create_time=1545667200 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1545674400 130 | value_0=78.541000 131 | 132 | 133 | type=22 134 | object_name=#166604352 sell 0.02 AUDJPY at 77.853 take profit at 77.165 135 | period_flags=0 136 | create_time=1545667200 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1545674400 147 | value_0=77.165000 148 | 149 | 150 | type=22 151 | object_name=#166643168 buy 0.02 AUDJPY at 76.789 152 | period_flags=0 153 | create_time=1546403400 154 | description= 0(#8132317) (8132317) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1546410600 165 | value_0=76.789000 166 | 167 | 168 | type=22 169 | object_name=#166643168 buy 0.02 AUDJPY at 76.789 stop loss at 76.126 170 | period_flags=0 171 | create_time=1546403400 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1546410600 182 | value_0=76.126000 183 | 184 | 185 | type=22 186 | object_name=#166643168 buy 0.02 AUDJPY at 76.789 take profit at 77.452 187 | period_flags=0 188 | create_time=1546403400 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1546410600 199 | value_0=77.452000 200 | 201 | 202 | type=22 203 | object_name=#167287823 sell 0.03 AUDJPY at 78.112 204 | period_flags=0 205 | create_time=1553773505 206 | description= 1(#8139317) (8139317) 207 | color=32768 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1553780705 217 | value_0=78.112000 218 | 219 | 220 | type=22 221 | object_name=#167287823 sell 0.03 AUDJPY at 78.112 stop loss at 78.491 222 | period_flags=0 223 | create_time=1553773505 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1553780705 234 | value_0=78.491000 235 | 236 | 237 | type=22 238 | object_name=#167287823 sell 0.03 AUDJPY at 78.112 take profit at 77.638 239 | period_flags=0 240 | create_time=1553773505 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1553780705 251 | value_0=77.638000 252 | 253 | 254 | 255 | 256 | 257 | name=FALCON_F2\Falcon_F2 258 | flags=343 259 | window_num=0 260 | 261 | Header1=----------EA General Settings----------- 262 | MagicNumber=8139317 263 | TerminalType=0 264 | R_Management=true 265 | Slippage=3 266 | IsECNbroker=false 267 | OnJournaling=false 268 | EnableDashboard=true 269 | Header2=----------Trading Rules Variables ----------- 270 | RobotBehavior=daily 271 | usePredictedSL=false 272 | usePredictedTP=false 273 | TimeMaxHoldM1=75 274 | TimeMaxHoldM15=1125 275 | TimeMaxHoldM60=4500 276 | entryTriggerM1=20 277 | entryTriggerM15=50 278 | entryTriggerM60=100 279 | stopLossFactorM1=2.0 280 | stopLossFactorM15=0.8 281 | stopLossFactorM60=0.8 282 | takeProfFactorM1=1.0 283 | takeProfFactorM15=1.0 284 | takeProfFactorM60=1.0 285 | predictor_periodM1=1 286 | predictor_periodM15=15 287 | predictor_periodH1=60 288 | closeAllOnFridays=true 289 | use_market_type=true 290 | Header3=----------Position Sizing Settings----------- 291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 292 | Lots=0.0 293 | IsSizingOn=true 294 | Risk=1.0 295 | MaxPositionsAllowed=1 296 | Header4=----------TP & SL Settings----------- 297 | UseFixedStopLoss=true 298 | FixedStopLoss=0.0 299 | IsVolatilityStopOn=true 300 | VolBasedSLMultiplier=4.0 301 | UseFixedTakeProfit=true 302 | FixedTakeProfit=0.0 303 | IsVolatilityTakeProfitOn=true 304 | VolBasedTPMultiplier=6.0 305 | Header5=----------Hidden TP & SL Settings----------- 306 | UseHiddenStopLoss=false 307 | FixedStopLoss_Hidden=0.0 308 | IsVolatilityStopLossOn_Hidden=false 309 | VolBasedSLMultiplier_Hidden=0.0 310 | UseHiddenTakeProfit=false 311 | FixedTakeProfit_Hidden=0.0 312 | IsVolatilityTakeProfitOn_Hidden=false 313 | VolBasedTPMultiplier_Hidden=0.0 314 | Header6=----------Breakeven Stops Settings----------- 315 | UseBreakevenStops=false 316 | BreakevenBuffer=0.0 317 | Header7=----------Hidden Breakeven Stops Settings----------- 318 | UseHiddenBreakevenStops=false 319 | BreakevenBuffer_Hidden=0.0 320 | Header8=----------Trailing Stops Settings----------- 321 | UseTrailingStops=false 322 | TrailingStopDistance=0.0 323 | TrailingStopBuffer=0.0 324 | Header9=----------Hidden Trailing Stops Settings----------- 325 | UseHiddenTrailingStops=false 326 | TrailingStopDistance_Hidden=0.0 327 | TrailingStopBuffer_Hidden=0.0 328 | Header10=----------Volatility Trailing Stops Settings----------- 329 | UseVolTrailingStops=false 330 | VolTrailingDistMultiplier=0.0 331 | VolTrailingBuffMultiplier=0.0 332 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 333 | UseHiddenVolTrailing=false 334 | VolTrailingDistMultiplier_Hidden=0.0 335 | VolTrailingBuffMultiplier_Hidden=0.0 336 | Header12=----------Volatility Measurement Settings----------- 337 | atr_period=14 338 | Header13=----------Set Max Loss Limit----------- 339 | IsLossLimitActivated=false 340 | LossLimitPercent=50.0 341 | Header14=----------Set Max Volatility Limit----------- 342 | IsVolLimitActivated=false 343 | VolatilityMultiplier=3.0 344 | ATRTimeframe=60 345 | ATRPeriod=14 346 | 347 | 348 | 349 | 350 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart23.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133856 3 | comment=Trade is not allowed 4 | symbol=NZDJPY 5 | period=15 6 | leftpos=44996 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166637229 sell 0.03 NZDJPY at 73.974 48 | period_flags=0 49 | create_time=1546214400 50 | description= 1(#8132322) (8132322) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1546221600 61 | value_0=73.974000 62 | 63 | 64 | type=22 65 | object_name=#166637229 sell 0.03 NZDJPY at 73.974 stop loss at 74.483 66 | period_flags=0 67 | create_time=1546214400 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1546221600 78 | value_0=74.483000 79 | 80 | 81 | type=22 82 | object_name=#166637229 sell 0.03 NZDJPY at 73.974 take profit at 73.465 83 | period_flags=0 84 | create_time=1546214400 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1546221600 95 | value_0=73.465000 96 | 97 | 98 | type=22 99 | object_name=#166924777 buy 0.03 NZDJPY at 75.596 100 | period_flags=0 101 | create_time=1549239300 102 | description= 0(#8132322) (8132322) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549246500 113 | value_0=75.596000 114 | 115 | 116 | type=22 117 | object_name=#166924777 buy 0.03 NZDJPY at 75.596 stop loss at 75.230 118 | period_flags=0 119 | create_time=1549239300 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549246500 130 | value_0=75.230000 131 | 132 | 133 | type=22 134 | object_name=#166924777 buy 0.03 NZDJPY at 75.596 take profit at 75.962 135 | period_flags=0 136 | create_time=1549239300 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549246500 147 | value_0=75.962000 148 | 149 | 150 | type=22 151 | object_name=#167259357 buy 0.04 NZDJPY at 76.267 152 | period_flags=0 153 | create_time=1553604301 154 | description= 0(#8139322) (8139322) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1553611500 165 | value_0=76.267000 166 | 167 | 168 | type=22 169 | object_name=#167259357 buy 0.04 NZDJPY at 76.267 stop loss at 75.981 170 | period_flags=0 171 | create_time=1553604301 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1553611500 182 | value_0=75.981000 183 | 184 | 185 | type=22 186 | object_name=#167259357 buy 0.04 NZDJPY at 76.267 take profit at 76.624 187 | period_flags=0 188 | create_time=1553604301 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1553611500 199 | value_0=76.624000 200 | 201 | 202 | type=22 203 | object_name=#167302219 buy 0.06 NZDJPY at 75.284 204 | period_flags=0 205 | create_time=1553850000 206 | description= 0(#8139322) (8139322) 207 | color=16711680 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1553857200 217 | value_0=75.284000 218 | 219 | 220 | type=22 221 | object_name=#167302219 buy 0.06 NZDJPY at 75.284 stop loss at 75.104 222 | period_flags=0 223 | create_time=1553850000 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1553857200 234 | value_0=75.104000 235 | 236 | 237 | type=22 238 | object_name=#167302219 buy 0.06 NZDJPY at 75.284 take profit at 75.509 239 | period_flags=0 240 | create_time=1553850000 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1553857200 251 | value_0=75.509000 252 | 253 | 254 | 255 | 256 | 257 | name=FALCON_F2\Falcon_F2 258 | flags=343 259 | window_num=0 260 | 261 | Header1=----------EA General Settings----------- 262 | MagicNumber=8139322 263 | TerminalType=0 264 | R_Management=true 265 | Slippage=3 266 | IsECNbroker=false 267 | OnJournaling=false 268 | EnableDashboard=true 269 | Header2=----------Trading Rules Variables ----------- 270 | RobotBehavior=daily 271 | usePredictedSL=false 272 | usePredictedTP=false 273 | TimeMaxHoldM1=75 274 | TimeMaxHoldM15=1125 275 | TimeMaxHoldM60=4500 276 | entryTriggerM1=20 277 | entryTriggerM15=50 278 | entryTriggerM60=100 279 | stopLossFactorM1=2.0 280 | stopLossFactorM15=0.8 281 | stopLossFactorM60=0.8 282 | takeProfFactorM1=1.0 283 | takeProfFactorM15=1.0 284 | takeProfFactorM60=1.0 285 | predictor_periodM1=1 286 | predictor_periodM15=15 287 | predictor_periodH1=60 288 | closeAllOnFridays=true 289 | use_market_type=true 290 | Header3=----------Position Sizing Settings----------- 291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 292 | Lots=0.0 293 | IsSizingOn=true 294 | Risk=1.0 295 | MaxPositionsAllowed=1 296 | Header4=----------TP & SL Settings----------- 297 | UseFixedStopLoss=true 298 | FixedStopLoss=0.0 299 | IsVolatilityStopOn=true 300 | VolBasedSLMultiplier=4.0 301 | UseFixedTakeProfit=true 302 | FixedTakeProfit=0.0 303 | IsVolatilityTakeProfitOn=true 304 | VolBasedTPMultiplier=6.0 305 | Header5=----------Hidden TP & SL Settings----------- 306 | UseHiddenStopLoss=false 307 | FixedStopLoss_Hidden=0.0 308 | IsVolatilityStopLossOn_Hidden=false 309 | VolBasedSLMultiplier_Hidden=0.0 310 | UseHiddenTakeProfit=false 311 | FixedTakeProfit_Hidden=0.0 312 | IsVolatilityTakeProfitOn_Hidden=false 313 | VolBasedTPMultiplier_Hidden=0.0 314 | Header6=----------Breakeven Stops Settings----------- 315 | UseBreakevenStops=false 316 | BreakevenBuffer=0.0 317 | Header7=----------Hidden Breakeven Stops Settings----------- 318 | UseHiddenBreakevenStops=false 319 | BreakevenBuffer_Hidden=0.0 320 | Header8=----------Trailing Stops Settings----------- 321 | UseTrailingStops=false 322 | TrailingStopDistance=0.0 323 | TrailingStopBuffer=0.0 324 | Header9=----------Hidden Trailing Stops Settings----------- 325 | UseHiddenTrailingStops=false 326 | TrailingStopDistance_Hidden=0.0 327 | TrailingStopBuffer_Hidden=0.0 328 | Header10=----------Volatility Trailing Stops Settings----------- 329 | UseVolTrailingStops=false 330 | VolTrailingDistMultiplier=0.0 331 | VolTrailingBuffMultiplier=0.0 332 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 333 | UseHiddenVolTrailing=false 334 | VolTrailingDistMultiplier_Hidden=0.0 335 | VolTrailingBuffMultiplier_Hidden=0.0 336 | Header12=----------Volatility Measurement Settings----------- 337 | atr_period=14 338 | Header13=----------Set Max Loss Limit----------- 339 | IsLossLimitActivated=false 340 | LossLimitPercent=50.0 341 | Header14=----------Set Max Volatility Limit----------- 342 | IsVolLimitActivated=false 343 | VolatilityMultiplier=3.0 344 | ATRTimeframe=60 345 | ATRPeriod=14 346 | 347 | 348 | 349 | 350 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart21.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133854 3 | comment=Trade is not allowed 4 | symbol=EURCAD 5 | period=15 6 | leftpos=45487 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166626490 buy 0.01 EURCAD at 1.56252 48 | period_flags=0 49 | create_time=1545937200 50 | description= 0(#8132320) (8132320) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545944400 61 | value_0=1.562520 62 | 63 | 64 | type=22 65 | object_name=#166626490 buy 0.01 EURCAD at 1.56252 stop loss at 1.54920 66 | period_flags=0 67 | create_time=1545937200 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545944400 78 | value_0=1.549200 79 | 80 | 81 | type=22 82 | object_name=#166626490 buy 0.01 EURCAD at 1.56252 take profit at 1.57584 83 | period_flags=0 84 | create_time=1545937200 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545944400 95 | value_0=1.575840 96 | 97 | 98 | type=22 99 | object_name=#166954895 buy 0.03 EURCAD at 1.51002 100 | period_flags=0 101 | create_time=1549584903 102 | description= 0(#8132320) (8132320) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549592103 113 | value_0=1.510020 114 | 115 | 116 | type=22 117 | object_name=#166954895 buy 0.03 EURCAD at 1.51002 stop loss at 1.50559 118 | period_flags=0 119 | create_time=1549584903 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549592103 130 | value_0=1.505590 131 | 132 | 133 | type=22 134 | object_name=#166954895 buy 0.03 EURCAD at 1.51002 take profit at 1.51445 135 | period_flags=0 136 | create_time=1549584903 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549592103 147 | value_0=1.514450 148 | 149 | 150 | type=22 151 | object_name=#166960904 sell 0.01 EURCAD at 1.50223 152 | period_flags=0 153 | create_time=1549649700 154 | description= 1(#8132320) (8132320) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1549656900 165 | value_0=1.502230 166 | 167 | 168 | type=22 169 | object_name=#166960904 sell 0.01 EURCAD at 1.50223 stop loss at 1.51066 170 | period_flags=0 171 | create_time=1549649700 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1549656900 182 | value_0=1.510660 183 | 184 | 185 | type=22 186 | object_name=#166960904 sell 0.01 EURCAD at 1.50223 take profit at 1.49380 187 | period_flags=0 188 | create_time=1549649700 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1549656900 199 | value_0=1.493800 200 | 201 | 202 | type=22 203 | object_name=#166960904 sell 0.01 EURCAD at 1.50223 close at 1.50250 204 | period_flags=0 205 | create_time=1549660500 206 | color=32768 207 | weight=1 208 | background=0 209 | symbol_code=3 210 | anchor_pos=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1549667700 216 | value_0=1.502500 217 | 218 | 219 | type=2 220 | object_name=#166960904 1.50223 -> 1.50250 221 | period_flags=0 222 | create_time=1549660500 223 | color=255 224 | style=2 225 | weight=1 226 | background=0 227 | filling=0 228 | selectable=1 229 | hidden=0 230 | zorder=0 231 | time_0=1549656900 232 | value_0=1.502230 233 | time_1=1549667700 234 | value_1=1.502500 235 | ray=0 236 | 237 | 238 | type=22 239 | object_name=#167255430 buy 0.06 EURCAD at 1.51607 240 | period_flags=0 241 | create_time=1553586300 242 | description= 0(#8139320) (8139320) 243 | color=16711680 244 | weight=1 245 | background=0 246 | symbol_code=1 247 | anchor_pos=0 248 | filling=0 249 | selectable=1 250 | hidden=0 251 | zorder=0 252 | time_0=1553593500 253 | value_0=1.516070 254 | 255 | 256 | type=22 257 | object_name=#167255430 buy 0.06 EURCAD at 1.51607 stop loss at 1.51361 258 | period_flags=0 259 | create_time=1553586300 260 | color=255 261 | weight=1 262 | background=0 263 | symbol_code=4 264 | anchor_pos=0 265 | filling=0 266 | selectable=1 267 | hidden=0 268 | zorder=0 269 | time_0=1553593500 270 | value_0=1.513610 271 | 272 | 273 | type=22 274 | object_name=#167255430 buy 0.06 EURCAD at 1.51607 take profit at 1.51915 275 | period_flags=0 276 | create_time=1553586300 277 | color=16711680 278 | weight=1 279 | background=0 280 | symbol_code=4 281 | anchor_pos=0 282 | filling=0 283 | selectable=1 284 | hidden=0 285 | zorder=0 286 | time_0=1553593500 287 | value_0=1.519150 288 | 289 | 290 | 291 | 292 | 293 | name=FALCON_F2\Falcon_F2 294 | flags=343 295 | window_num=0 296 | 297 | Header1=----------EA General Settings----------- 298 | MagicNumber=8139320 299 | TerminalType=0 300 | R_Management=true 301 | Slippage=3 302 | IsECNbroker=false 303 | OnJournaling=false 304 | EnableDashboard=true 305 | Header2=----------Trading Rules Variables ----------- 306 | RobotBehavior=daily 307 | usePredictedSL=false 308 | usePredictedTP=false 309 | TimeMaxHoldM1=75 310 | TimeMaxHoldM15=1125 311 | TimeMaxHoldM60=4500 312 | entryTriggerM1=20 313 | entryTriggerM15=50 314 | entryTriggerM60=100 315 | stopLossFactorM1=2.0 316 | stopLossFactorM15=0.8 317 | stopLossFactorM60=0.8 318 | takeProfFactorM1=1.0 319 | takeProfFactorM15=1.0 320 | takeProfFactorM60=1.0 321 | predictor_periodM1=1 322 | predictor_periodM15=15 323 | predictor_periodH1=60 324 | closeAllOnFridays=true 325 | use_market_type=true 326 | Header3=----------Position Sizing Settings----------- 327 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 328 | Lots=0.0 329 | IsSizingOn=true 330 | Risk=1.0 331 | MaxPositionsAllowed=1 332 | Header4=----------TP & SL Settings----------- 333 | UseFixedStopLoss=true 334 | FixedStopLoss=0.0 335 | IsVolatilityStopOn=true 336 | VolBasedSLMultiplier=4.0 337 | UseFixedTakeProfit=true 338 | FixedTakeProfit=0.0 339 | IsVolatilityTakeProfitOn=true 340 | VolBasedTPMultiplier=6.0 341 | Header5=----------Hidden TP & SL Settings----------- 342 | UseHiddenStopLoss=false 343 | FixedStopLoss_Hidden=0.0 344 | IsVolatilityStopLossOn_Hidden=false 345 | VolBasedSLMultiplier_Hidden=0.0 346 | UseHiddenTakeProfit=false 347 | FixedTakeProfit_Hidden=0.0 348 | IsVolatilityTakeProfitOn_Hidden=false 349 | VolBasedTPMultiplier_Hidden=0.0 350 | Header6=----------Breakeven Stops Settings----------- 351 | UseBreakevenStops=false 352 | BreakevenBuffer=0.0 353 | Header7=----------Hidden Breakeven Stops Settings----------- 354 | UseHiddenBreakevenStops=false 355 | BreakevenBuffer_Hidden=0.0 356 | Header8=----------Trailing Stops Settings----------- 357 | UseTrailingStops=false 358 | TrailingStopDistance=0.0 359 | TrailingStopBuffer=0.0 360 | Header9=----------Hidden Trailing Stops Settings----------- 361 | UseHiddenTrailingStops=false 362 | TrailingStopDistance_Hidden=0.0 363 | TrailingStopBuffer_Hidden=0.0 364 | Header10=----------Volatility Trailing Stops Settings----------- 365 | UseVolTrailingStops=false 366 | VolTrailingDistMultiplier=0.0 367 | VolTrailingBuffMultiplier=0.0 368 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 369 | UseHiddenVolTrailing=false 370 | VolTrailingDistMultiplier_Hidden=0.0 371 | VolTrailingBuffMultiplier_Hidden=0.0 372 | Header12=----------Volatility Measurement Settings----------- 373 | atr_period=14 374 | Header13=----------Set Max Loss Limit----------- 375 | IsLossLimitActivated=false 376 | LossLimitPercent=50.0 377 | Header14=----------Set Max Volatility Limit----------- 378 | IsVolLimitActivated=false 379 | VolatilityMultiplier=3.0 380 | ATRTimeframe=60 381 | ATRPeriod=14 382 | 383 | 384 | 385 | 386 | -------------------------------------------------------------------------------- /mt4_profile/T1_FALCON_F2/chart02.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925660681491 3 | comment=Trade is allowed 4 | symbol=USDCHF 5 | period=15 6 | leftpos=56722 7 | digits=5 8 | scale=1 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#167256526 sell 0.01 USDCHF at 0.99294 48 | period_flags=0 49 | create_time=1553592600 50 | description= 1(#8139101) (8139101) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1553599800 61 | value_0=0.992940 62 | 63 | 64 | type=22 65 | object_name=#167256526 sell 0.01 USDCHF at 0.99294 stop loss at 0.99479 66 | period_flags=0 67 | create_time=1553592600 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1553599800 78 | value_0=0.994790 79 | 80 | 81 | type=22 82 | object_name=#167256526 sell 0.01 USDCHF at 0.99294 take profit at 0.99063 83 | period_flags=0 84 | create_time=1553592600 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1553599800 95 | value_0=0.990630 96 | 97 | 98 | type=22 99 | object_name=#167257527 sell 0.01 USDCHF at 0.99305 100 | period_flags=0 101 | create_time=1553596200 102 | description= 1(#8139101) (8139101) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1553603400 113 | value_0=0.993050 114 | 115 | 116 | type=22 117 | object_name=#167257527 sell 0.01 USDCHF at 0.99305 stop loss at 0.99499 118 | period_flags=0 119 | create_time=1553596200 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1553603400 130 | value_0=0.994990 131 | 132 | 133 | type=22 134 | object_name=#167257527 sell 0.01 USDCHF at 0.99305 take profit at 0.99062 135 | period_flags=0 136 | create_time=1553596200 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1553603400 147 | value_0=0.990620 148 | 149 | 150 | type=22 151 | object_name=#167257782 sell 0.01 USDCHF at 0.99324 152 | period_flags=0 153 | create_time=1553597103 154 | description= 1(#8139101) (8139101) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1553604302 165 | value_0=0.993240 166 | 167 | 168 | type=22 169 | object_name=#167257782 sell 0.01 USDCHF at 0.99324 stop loss at 0.99518 170 | period_flags=0 171 | create_time=1553597103 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1553604302 182 | value_0=0.995180 183 | 184 | 185 | type=22 186 | object_name=#167257782 sell 0.01 USDCHF at 0.99324 take profit at 0.99081 187 | period_flags=0 188 | create_time=1553597103 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1553604302 199 | value_0=0.990810 200 | 201 | 202 | type=22 203 | object_name=#167415807 buy 0.01 USDCHF at 1.00257 204 | period_flags=0 205 | create_time=1555333200 206 | description= 0(#8139101) (8139101) 207 | color=16711680 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1555344000 217 | value_0=1.002570 218 | 219 | 220 | type=22 221 | object_name=#167415807 buy 0.01 USDCHF at 1.00257 stop loss at 1.00086 222 | period_flags=0 223 | create_time=1555333200 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1555344000 234 | value_0=1.000860 235 | 236 | 237 | type=22 238 | object_name=#167415807 buy 0.01 USDCHF at 1.00257 take profit at 1.00471 239 | period_flags=0 240 | create_time=1555333200 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1555344000 251 | value_0=1.004710 252 | 253 | 254 | type=22 255 | object_name=#167417074 buy 0.01 USDCHF at 1.00311 256 | period_flags=0 257 | create_time=1555339500 258 | description= 0(#8139101) (8139101) 259 | color=16711680 260 | weight=1 261 | background=0 262 | symbol_code=1 263 | anchor_pos=0 264 | filling=0 265 | selectable=1 266 | hidden=0 267 | zorder=0 268 | time_0=1555350300 269 | value_0=1.003110 270 | 271 | 272 | type=22 273 | object_name=#167417074 buy 0.01 USDCHF at 1.00311 stop loss at 1.00150 274 | period_flags=0 275 | create_time=1555339500 276 | color=255 277 | weight=1 278 | background=0 279 | symbol_code=4 280 | anchor_pos=0 281 | filling=0 282 | selectable=1 283 | hidden=0 284 | zorder=0 285 | time_0=1555350300 286 | value_0=1.001500 287 | 288 | 289 | type=22 290 | object_name=#167417074 buy 0.01 USDCHF at 1.00311 take profit at 1.00512 291 | period_flags=0 292 | create_time=1555339500 293 | color=16711680 294 | weight=1 295 | background=0 296 | symbol_code=4 297 | anchor_pos=0 298 | filling=0 299 | selectable=1 300 | hidden=0 301 | zorder=0 302 | time_0=1555350300 303 | value_0=1.005120 304 | 305 | 306 | 307 | 308 | 309 | name=FALCON_F2\Falcon_F2 310 | flags=343 311 | window_num=0 312 | 313 | Header1=----------EA General Settings----------- 314 | MagicNumber=8139101 315 | TerminalType=1 316 | R_Management=true 317 | Slippage=3 318 | IsECNbroker=false 319 | OnJournaling=false 320 | EnableDashboard=true 321 | Header2=----------Trading Rules Variables ----------- 322 | RobotBehavior=daily 323 | usePredictedSL=false 324 | usePredictedTP=false 325 | TimeMaxHoldM1=75 326 | TimeMaxHoldM15=1125 327 | TimeMaxHoldM60=4500 328 | entryTriggerM1=20 329 | entryTriggerM15=50 330 | entryTriggerM60=100 331 | stopLossFactorM1=2.0 332 | stopLossFactorM15=0.8 333 | stopLossFactorM60=0.8 334 | takeProfFactorM1=1.0 335 | takeProfFactorM15=1.0 336 | takeProfFactorM60=1.0 337 | predictor_periodM1=1 338 | predictor_periodM15=15 339 | predictor_periodH1=60 340 | closeAllOnFridays=true 341 | use_market_type=true 342 | Header3=----------Position Sizing Settings----------- 343 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 344 | Lots=0.01 345 | IsSizingOn=false 346 | Risk=1.0 347 | MaxPositionsAllowed=25 348 | Header4=----------TP & SL Settings----------- 349 | UseFixedStopLoss=true 350 | FixedStopLoss=0.0 351 | IsVolatilityStopOn=true 352 | VolBasedSLMultiplier=4.0 353 | UseFixedTakeProfit=true 354 | FixedTakeProfit=0.0 355 | IsVolatilityTakeProfitOn=true 356 | VolBasedTPMultiplier=6.0 357 | Header5=----------Hidden TP & SL Settings----------- 358 | UseHiddenStopLoss=false 359 | FixedStopLoss_Hidden=0.0 360 | IsVolatilityStopLossOn_Hidden=false 361 | VolBasedSLMultiplier_Hidden=0.0 362 | UseHiddenTakeProfit=false 363 | FixedTakeProfit_Hidden=0.0 364 | IsVolatilityTakeProfitOn_Hidden=false 365 | VolBasedTPMultiplier_Hidden=0.0 366 | Header6=----------Breakeven Stops Settings----------- 367 | UseBreakevenStops=false 368 | BreakevenBuffer=0.0 369 | Header7=----------Hidden Breakeven Stops Settings----------- 370 | UseHiddenBreakevenStops=false 371 | BreakevenBuffer_Hidden=0.0 372 | Header8=----------Trailing Stops Settings----------- 373 | UseTrailingStops=false 374 | TrailingStopDistance=0.0 375 | TrailingStopBuffer=0.0 376 | Header9=----------Hidden Trailing Stops Settings----------- 377 | UseHiddenTrailingStops=false 378 | TrailingStopDistance_Hidden=0.0 379 | TrailingStopBuffer_Hidden=0.0 380 | Header10=----------Volatility Trailing Stops Settings----------- 381 | UseVolTrailingStops=false 382 | VolTrailingDistMultiplier=0.0 383 | VolTrailingBuffMultiplier=0.0 384 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 385 | UseHiddenVolTrailing=false 386 | VolTrailingDistMultiplier_Hidden=0.0 387 | VolTrailingBuffMultiplier_Hidden=0.0 388 | Header12=----------Volatility Measurement Settings----------- 389 | atr_period=14 390 | Header13=----------Set Max Loss Limit----------- 391 | IsLossLimitActivated=false 392 | LossLimitPercent=50.0 393 | Header14=----------Set Max Volatility Limit----------- 394 | IsVolLimitActivated=false 395 | VolatilityMultiplier=3.0 396 | ATRTimeframe=60 397 | ATRPeriod=14 398 | 399 | 400 | 401 | 402 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart19.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133852 3 | comment=Trade is not allowed 4 | symbol=CHFJPY 5 | period=15 6 | leftpos=47022 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166960040 buy 0.03 CHFJPY at 109.738 48 | period_flags=0 49 | create_time=1549638900 50 | description= 0(#8132318) (8132318) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1549646100 61 | value_0=109.738000 62 | 63 | 64 | type=22 65 | object_name=#166960040 buy 0.03 CHFJPY at 109.738 stop loss at 109.383 66 | period_flags=0 67 | create_time=1549638900 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1549646100 78 | value_0=109.383000 79 | 80 | 81 | type=22 82 | object_name=#166960040 buy 0.03 CHFJPY at 109.738 take profit at 110.093 83 | period_flags=0 84 | create_time=1549638900 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1549646100 95 | value_0=110.093000 96 | 97 | 98 | type=22 99 | object_name=#166960040 buy 0.03 CHFJPY at 109.738 close at 109.783 100 | period_flags=0 101 | create_time=1549659600 102 | color=16711680 103 | weight=1 104 | background=0 105 | symbol_code=3 106 | anchor_pos=0 107 | filling=0 108 | selectable=1 109 | hidden=0 110 | zorder=0 111 | time_0=1549666800 112 | value_0=109.783000 113 | 114 | 115 | type=2 116 | object_name=#166960040 109.738 -> 109.783 117 | period_flags=0 118 | create_time=1549659600 119 | color=16711680 120 | style=2 121 | weight=1 122 | background=0 123 | filling=0 124 | selectable=1 125 | hidden=0 126 | zorder=0 127 | time_0=1549646100 128 | value_0=109.738000 129 | time_1=1549666800 130 | value_1=109.783000 131 | ray=0 132 | 133 | 134 | type=22 135 | object_name=#167298756 sell 0.04 CHFJPY at 111.225 136 | period_flags=0 137 | create_time=1553813103 138 | description= 1(#8139318) (8139318) 139 | color=32768 140 | weight=1 141 | background=0 142 | symbol_code=1 143 | anchor_pos=0 144 | filling=0 145 | selectable=1 146 | hidden=0 147 | zorder=0 148 | time_0=1553820303 149 | value_0=111.225000 150 | 151 | 152 | type=22 153 | object_name=#167298756 sell 0.04 CHFJPY at 111.225 stop loss at 111.490 154 | period_flags=0 155 | create_time=1553813103 156 | color=255 157 | weight=1 158 | background=0 159 | symbol_code=4 160 | anchor_pos=0 161 | filling=0 162 | selectable=1 163 | hidden=0 164 | zorder=0 165 | time_0=1553820303 166 | value_0=111.490000 167 | 168 | 169 | type=22 170 | object_name=#167298756 sell 0.04 CHFJPY at 111.225 take profit at 110.893 171 | period_flags=0 172 | create_time=1553813103 173 | color=16711680 174 | weight=1 175 | background=0 176 | symbol_code=4 177 | anchor_pos=0 178 | filling=0 179 | selectable=1 180 | hidden=0 181 | zorder=0 182 | time_0=1553820303 183 | value_0=110.893000 184 | 185 | 186 | type=22 187 | object_name=#167298756 sell 0.04 CHFJPY at 111.225 close at 111.250 188 | period_flags=0 189 | create_time=1553881500 190 | color=32768 191 | weight=1 192 | background=0 193 | symbol_code=3 194 | anchor_pos=0 195 | filling=0 196 | selectable=1 197 | hidden=0 198 | zorder=0 199 | time_0=1553888700 200 | value_0=111.250000 201 | 202 | 203 | type=2 204 | object_name=#167298756 111.225 -> 111.250 205 | period_flags=0 206 | create_time=1553881500 207 | color=255 208 | style=2 209 | weight=1 210 | background=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1553820303 216 | value_0=111.225000 217 | time_1=1553888700 218 | value_1=111.250000 219 | ray=0 220 | 221 | 222 | type=22 223 | object_name=#167308981 buy 0.05 CHFJPY at 111.269 224 | period_flags=0 225 | create_time=1553882401 226 | description= 0(#8139318) (8139318) 227 | color=16711680 228 | weight=1 229 | background=0 230 | symbol_code=1 231 | anchor_pos=0 232 | filling=0 233 | selectable=1 234 | hidden=0 235 | zorder=0 236 | time_0=1553889601 237 | value_0=111.269000 238 | 239 | 240 | type=22 241 | object_name=#167308981 buy 0.05 CHFJPY at 111.269 stop loss at 111.035 242 | period_flags=0 243 | create_time=1553882401 244 | color=255 245 | weight=1 246 | background=0 247 | symbol_code=4 248 | anchor_pos=0 249 | filling=0 250 | selectable=1 251 | hidden=0 252 | zorder=0 253 | time_0=1553889601 254 | value_0=111.035000 255 | 256 | 257 | type=22 258 | object_name=#167308981 buy 0.05 CHFJPY at 111.269 take profit at 111.561 259 | period_flags=0 260 | create_time=1553882401 261 | color=16711680 262 | weight=1 263 | background=0 264 | symbol_code=4 265 | anchor_pos=0 266 | filling=0 267 | selectable=1 268 | hidden=0 269 | zorder=0 270 | time_0=1553889601 271 | value_0=111.561000 272 | 273 | 274 | type=22 275 | object_name=#167308981 buy 0.05 CHFJPY at 111.269 close at 111.281 276 | period_flags=0 277 | create_time=1553889600 278 | color=16711680 279 | weight=1 280 | background=0 281 | symbol_code=3 282 | anchor_pos=0 283 | filling=0 284 | selectable=1 285 | hidden=0 286 | zorder=0 287 | time_0=1553896800 288 | value_0=111.281000 289 | 290 | 291 | type=2 292 | object_name=#167308981 111.269 -> 111.281 293 | period_flags=0 294 | create_time=1553889600 295 | color=16711680 296 | style=2 297 | weight=1 298 | background=0 299 | filling=0 300 | selectable=1 301 | hidden=0 302 | zorder=0 303 | time_0=1553889601 304 | value_0=111.269000 305 | time_1=1553896800 306 | value_1=111.281000 307 | ray=0 308 | 309 | 310 | 311 | 312 | 313 | name=FALCON_F2\Falcon_F2 314 | flags=343 315 | window_num=0 316 | 317 | Header1=----------EA General Settings----------- 318 | MagicNumber=8139318 319 | TerminalType=0 320 | R_Management=true 321 | Slippage=3 322 | IsECNbroker=false 323 | OnJournaling=false 324 | EnableDashboard=true 325 | Header2=----------Trading Rules Variables ----------- 326 | RobotBehavior=daily 327 | usePredictedSL=false 328 | usePredictedTP=false 329 | TimeMaxHoldM1=75 330 | TimeMaxHoldM15=1125 331 | TimeMaxHoldM60=4500 332 | entryTriggerM1=20 333 | entryTriggerM15=50 334 | entryTriggerM60=100 335 | stopLossFactorM1=2.0 336 | stopLossFactorM15=0.8 337 | stopLossFactorM60=0.8 338 | takeProfFactorM1=1.0 339 | takeProfFactorM15=1.0 340 | takeProfFactorM60=1.0 341 | predictor_periodM1=1 342 | predictor_periodM15=15 343 | predictor_periodH1=60 344 | closeAllOnFridays=true 345 | use_market_type=true 346 | Header3=----------Position Sizing Settings----------- 347 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 348 | Lots=0.0 349 | IsSizingOn=true 350 | Risk=1.0 351 | MaxPositionsAllowed=1 352 | Header4=----------TP & SL Settings----------- 353 | UseFixedStopLoss=true 354 | FixedStopLoss=0.0 355 | IsVolatilityStopOn=true 356 | VolBasedSLMultiplier=4.0 357 | UseFixedTakeProfit=true 358 | FixedTakeProfit=0.0 359 | IsVolatilityTakeProfitOn=true 360 | VolBasedTPMultiplier=6.0 361 | Header5=----------Hidden TP & SL Settings----------- 362 | UseHiddenStopLoss=false 363 | FixedStopLoss_Hidden=0.0 364 | IsVolatilityStopLossOn_Hidden=false 365 | VolBasedSLMultiplier_Hidden=0.0 366 | UseHiddenTakeProfit=false 367 | FixedTakeProfit_Hidden=0.0 368 | IsVolatilityTakeProfitOn_Hidden=false 369 | VolBasedTPMultiplier_Hidden=0.0 370 | Header6=----------Breakeven Stops Settings----------- 371 | UseBreakevenStops=false 372 | BreakevenBuffer=0.0 373 | Header7=----------Hidden Breakeven Stops Settings----------- 374 | UseHiddenBreakevenStops=false 375 | BreakevenBuffer_Hidden=0.0 376 | Header8=----------Trailing Stops Settings----------- 377 | UseTrailingStops=false 378 | TrailingStopDistance=0.0 379 | TrailingStopBuffer=0.0 380 | Header9=----------Hidden Trailing Stops Settings----------- 381 | UseHiddenTrailingStops=false 382 | TrailingStopDistance_Hidden=0.0 383 | TrailingStopBuffer_Hidden=0.0 384 | Header10=----------Volatility Trailing Stops Settings----------- 385 | UseVolTrailingStops=false 386 | VolTrailingDistMultiplier=0.0 387 | VolTrailingBuffMultiplier=0.0 388 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 389 | UseHiddenVolTrailing=false 390 | VolTrailingDistMultiplier_Hidden=0.0 391 | VolTrailingBuffMultiplier_Hidden=0.0 392 | Header12=----------Volatility Measurement Settings----------- 393 | atr_period=14 394 | Header13=----------Set Max Loss Limit----------- 395 | IsLossLimitActivated=false 396 | LossLimitPercent=50.0 397 | Header14=----------Set Max Volatility Limit----------- 398 | IsVolLimitActivated=false 399 | VolatilityMultiplier=3.0 400 | ATRTimeframe=60 401 | ATRPeriod=14 402 | 403 | 404 | 405 | 406 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart20.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133853 3 | comment=Trade is not allowed 4 | symbol=EURNZD 5 | period=15 6 | leftpos=47043 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166637493 buy 0.02 EURNZD at 1.70565 48 | period_flags=0 49 | create_time=1546218900 50 | description= 0(#8132319) (8132319) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1546226100 61 | value_0=1.705650 62 | 63 | 64 | type=22 65 | object_name=#166637493 buy 0.02 EURNZD at 1.70565 stop loss at 1.69698 66 | period_flags=0 67 | create_time=1546218900 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1546226100 78 | value_0=1.696980 79 | 80 | 81 | type=22 82 | object_name=#166637493 buy 0.02 EURNZD at 1.70565 take profit at 1.71432 83 | period_flags=0 84 | create_time=1546218900 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1546226100 95 | value_0=1.714320 96 | 97 | 98 | type=22 99 | object_name=#166655828 sell 0.01 EURNZD at 1.71103 100 | period_flags=0 101 | create_time=1546480800 102 | description= 1(#8132319) (8132319) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1546488000 113 | value_0=1.711030 114 | 115 | 116 | type=22 117 | object_name=#166655828 sell 0.01 EURNZD at 1.71103 stop loss at 1.76696 118 | period_flags=0 119 | create_time=1546480800 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1546488000 130 | value_0=1.766960 131 | 132 | 133 | type=22 134 | object_name=#166655828 sell 0.01 EURNZD at 1.71103 take profit at 1.65510 135 | period_flags=0 136 | create_time=1546480800 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1546488000 147 | value_0=1.655100 148 | 149 | 150 | type=22 151 | object_name=#166927293 sell 0.02 EURNZD at 1.66094 152 | period_flags=0 153 | create_time=1549274400 154 | description= 1(#8132319) (8132319) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1549281600 165 | value_0=1.660940 166 | 167 | 168 | type=22 169 | object_name=#166927293 sell 0.02 EURNZD at 1.66094 stop loss at 1.66625 170 | period_flags=0 171 | create_time=1549274400 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1549281600 182 | value_0=1.666250 183 | 184 | 185 | type=22 186 | object_name=#166927293 sell 0.02 EURNZD at 1.66094 take profit at 1.65563 187 | period_flags=0 188 | create_time=1549274400 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1549281600 199 | value_0=1.655630 200 | 201 | 202 | type=22 203 | object_name=#166943306 buy 0.02 EURNZD at 1.66280 204 | period_flags=0 205 | create_time=1549466100 206 | description= 0(#8132319) (8132319) 207 | color=16711680 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1549473300 217 | value_0=1.662800 218 | 219 | 220 | type=22 221 | object_name=#166943306 buy 0.02 EURNZD at 1.66280 stop loss at 1.65705 222 | period_flags=0 223 | create_time=1549466100 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1549473300 234 | value_0=1.657050 235 | 236 | 237 | type=22 238 | object_name=#166943306 buy 0.02 EURNZD at 1.66280 take profit at 1.66855 239 | period_flags=0 240 | create_time=1549466100 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1549473300 251 | value_0=1.668550 252 | 253 | 254 | type=22 255 | object_name=#166953297 buy 0.02 EURNZD at 1.68084 256 | period_flags=0 257 | create_time=1549567800 258 | description= 0(#8132319) (8132319) 259 | color=16711680 260 | weight=1 261 | background=0 262 | symbol_code=1 263 | anchor_pos=0 264 | filling=0 265 | selectable=1 266 | hidden=0 267 | zorder=0 268 | time_0=1549575000 269 | value_0=1.680840 270 | 271 | 272 | type=22 273 | object_name=#166953297 buy 0.02 EURNZD at 1.68084 stop loss at 1.67556 274 | period_flags=0 275 | create_time=1549567800 276 | color=255 277 | weight=1 278 | background=0 279 | symbol_code=4 280 | anchor_pos=0 281 | filling=0 282 | selectable=1 283 | hidden=0 284 | zorder=0 285 | time_0=1549575000 286 | value_0=1.675560 287 | 288 | 289 | type=22 290 | object_name=#166953297 buy 0.02 EURNZD at 1.68084 take profit at 1.68612 291 | period_flags=0 292 | create_time=1549567800 293 | color=16711680 294 | weight=1 295 | background=0 296 | symbol_code=4 297 | anchor_pos=0 298 | filling=0 299 | selectable=1 300 | hidden=0 301 | zorder=0 302 | time_0=1549575000 303 | value_0=1.686120 304 | 305 | 306 | 307 | 308 | 309 | name=FALCON_F2\Falcon_F2 310 | flags=343 311 | window_num=0 312 | 313 | Header1=----------EA General Settings----------- 314 | MagicNumber=8139319 315 | TerminalType=0 316 | R_Management=true 317 | Slippage=3 318 | IsECNbroker=false 319 | OnJournaling=false 320 | EnableDashboard=true 321 | Header2=----------Trading Rules Variables ----------- 322 | RobotBehavior=daily 323 | usePredictedSL=false 324 | usePredictedTP=false 325 | TimeMaxHoldM1=75 326 | TimeMaxHoldM15=1125 327 | TimeMaxHoldM60=4500 328 | entryTriggerM1=20 329 | entryTriggerM15=50 330 | entryTriggerM60=100 331 | stopLossFactorM1=2.0 332 | stopLossFactorM15=0.8 333 | stopLossFactorM60=0.8 334 | takeProfFactorM1=1.0 335 | takeProfFactorM15=1.0 336 | takeProfFactorM60=1.0 337 | predictor_periodM1=1 338 | predictor_periodM15=15 339 | predictor_periodH1=60 340 | closeAllOnFridays=true 341 | use_market_type=true 342 | Header3=----------Position Sizing Settings----------- 343 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 344 | Lots=0.0 345 | IsSizingOn=true 346 | Risk=1.0 347 | MaxPositionsAllowed=1 348 | Header4=----------TP & SL Settings----------- 349 | UseFixedStopLoss=true 350 | FixedStopLoss=0.0 351 | IsVolatilityStopOn=true 352 | VolBasedSLMultiplier=4.0 353 | UseFixedTakeProfit=true 354 | FixedTakeProfit=0.0 355 | IsVolatilityTakeProfitOn=true 356 | VolBasedTPMultiplier=6.0 357 | Header5=----------Hidden TP & SL Settings----------- 358 | UseHiddenStopLoss=false 359 | FixedStopLoss_Hidden=0.0 360 | IsVolatilityStopLossOn_Hidden=false 361 | VolBasedSLMultiplier_Hidden=0.0 362 | UseHiddenTakeProfit=false 363 | FixedTakeProfit_Hidden=0.0 364 | IsVolatilityTakeProfitOn_Hidden=false 365 | VolBasedTPMultiplier_Hidden=0.0 366 | Header6=----------Breakeven Stops Settings----------- 367 | UseBreakevenStops=false 368 | BreakevenBuffer=0.0 369 | Header7=----------Hidden Breakeven Stops Settings----------- 370 | UseHiddenBreakevenStops=false 371 | BreakevenBuffer_Hidden=0.0 372 | Header8=----------Trailing Stops Settings----------- 373 | UseTrailingStops=false 374 | TrailingStopDistance=0.0 375 | TrailingStopBuffer=0.0 376 | Header9=----------Hidden Trailing Stops Settings----------- 377 | UseHiddenTrailingStops=false 378 | TrailingStopDistance_Hidden=0.0 379 | TrailingStopBuffer_Hidden=0.0 380 | Header10=----------Volatility Trailing Stops Settings----------- 381 | UseVolTrailingStops=false 382 | VolTrailingDistMultiplier=0.0 383 | VolTrailingBuffMultiplier=0.0 384 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 385 | UseHiddenVolTrailing=false 386 | VolTrailingDistMultiplier_Hidden=0.0 387 | VolTrailingBuffMultiplier_Hidden=0.0 388 | Header12=----------Volatility Measurement Settings----------- 389 | atr_period=14 390 | Header13=----------Set Max Loss Limit----------- 391 | IsLossLimitActivated=false 392 | LossLimitPercent=50.0 393 | Header14=----------Set Max Volatility Limit----------- 394 | IsVolLimitActivated=false 395 | VolatilityMultiplier=3.0 396 | ATRTimeframe=60 397 | ATRPeriod=14 398 | 399 | 400 | 401 | 402 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart11.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133844 3 | comment=Trade is not allowed 4 | symbol=EURJPY 5 | period=15 6 | leftpos=47023 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166610211 sell 0.03 EURJPY at 125.857 48 | period_flags=0 49 | create_time=1545832800 50 | description= 1(#8132310) (8132310) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545840000 61 | value_0=125.857000 62 | 63 | 64 | type=22 65 | object_name=#166610211 sell 0.03 EURJPY at 125.857 stop loss at 126.249 66 | period_flags=0 67 | create_time=1545832800 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545840000 78 | value_0=126.249000 79 | 80 | 81 | type=22 82 | object_name=#166610211 sell 0.03 EURJPY at 125.857 take profit at 125.465 83 | period_flags=0 84 | create_time=1545832800 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545840000 95 | value_0=125.465000 96 | 97 | 98 | type=22 99 | object_name=#166613570 sell 0.02 EURJPY at 126.438 100 | period_flags=0 101 | create_time=1545865200 102 | description= 1(#8132310) (8132310) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1545872400 113 | value_0=126.438000 114 | 115 | 116 | type=22 117 | object_name=#166613570 sell 0.02 EURJPY at 126.438 stop loss at 127.025 118 | period_flags=0 119 | create_time=1545865200 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1545872400 130 | value_0=127.025000 131 | 132 | 133 | type=22 134 | object_name=#166613570 sell 0.02 EURJPY at 126.438 take profit at 125.851 135 | period_flags=0 136 | create_time=1545865200 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1545872400 147 | value_0=125.851000 148 | 149 | 150 | type=22 151 | object_name=#166642491 sell 0.02 EURJPY at 125.587 152 | period_flags=0 153 | create_time=1546278300 154 | description= 1(#8132310) (8132310) 155 | color=32768 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1546285500 165 | value_0=125.587000 166 | 167 | 168 | type=22 169 | object_name=#166642491 sell 0.02 EURJPY at 125.587 stop loss at 126.362 170 | period_flags=0 171 | create_time=1546278300 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1546285500 182 | value_0=126.362000 183 | 184 | 185 | type=22 186 | object_name=#166642491 sell 0.02 EURJPY at 125.587 take profit at 124.812 187 | period_flags=0 188 | create_time=1546278300 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1546285500 199 | value_0=124.812000 200 | 201 | 202 | type=22 203 | object_name=#166928868 sell 0.02 EURJPY at 125.857 204 | period_flags=0 205 | create_time=1549291500 206 | description= 1(#8132310) (8132310) 207 | color=32768 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1549298700 217 | value_0=125.857000 218 | 219 | 220 | type=22 221 | object_name=#166928868 sell 0.02 EURJPY at 125.857 stop loss at 126.243 222 | period_flags=0 223 | create_time=1549291500 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1549298700 234 | value_0=126.243000 235 | 236 | 237 | type=22 238 | object_name=#166928868 sell 0.02 EURJPY at 125.857 take profit at 125.471 239 | period_flags=0 240 | create_time=1549291500 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1549298700 251 | value_0=125.471000 252 | 253 | 254 | type=22 255 | object_name=#166943684 buy 0.02 EURJPY at 124.953 256 | period_flags=0 257 | create_time=1549469700 258 | description= 0(#8132310) (8132310) 259 | color=16711680 260 | weight=1 261 | background=0 262 | symbol_code=1 263 | anchor_pos=0 264 | filling=0 265 | selectable=1 266 | hidden=0 267 | zorder=0 268 | time_0=1549476900 269 | value_0=124.953000 270 | 271 | 272 | type=22 273 | object_name=#166943684 buy 0.02 EURJPY at 124.953 stop loss at 124.506 274 | period_flags=0 275 | create_time=1549469700 276 | color=255 277 | weight=1 278 | background=0 279 | symbol_code=4 280 | anchor_pos=0 281 | filling=0 282 | selectable=1 283 | hidden=0 284 | zorder=0 285 | time_0=1549476900 286 | value_0=124.506000 287 | 288 | 289 | type=22 290 | object_name=#166943684 buy 0.02 EURJPY at 124.953 take profit at 125.400 291 | period_flags=0 292 | create_time=1549469700 293 | color=16711680 294 | weight=1 295 | background=0 296 | symbol_code=4 297 | anchor_pos=0 298 | filling=0 299 | selectable=1 300 | hidden=0 301 | zorder=0 302 | time_0=1549476900 303 | value_0=125.400000 304 | 305 | 306 | type=22 307 | object_name=#167294940 sell 0.05 EURJPY at 124.347 308 | period_flags=0 309 | create_time=1553784300 310 | description= 1(#8139310) (8139310) 311 | color=32768 312 | weight=1 313 | background=0 314 | symbol_code=1 315 | anchor_pos=0 316 | filling=0 317 | selectable=1 318 | hidden=0 319 | zorder=0 320 | time_0=1553791500 321 | value_0=124.347000 322 | 323 | 324 | type=22 325 | object_name=#167294940 sell 0.05 EURJPY at 124.347 stop loss at 124.556 326 | period_flags=0 327 | create_time=1553784300 328 | color=255 329 | weight=1 330 | background=0 331 | symbol_code=4 332 | anchor_pos=0 333 | filling=0 334 | selectable=1 335 | hidden=0 336 | zorder=0 337 | time_0=1553791500 338 | value_0=124.556000 339 | 340 | 341 | type=22 342 | object_name=#167294940 sell 0.05 EURJPY at 124.347 take profit at 124.086 343 | period_flags=0 344 | create_time=1553784300 345 | color=16711680 346 | weight=1 347 | background=0 348 | symbol_code=4 349 | anchor_pos=0 350 | filling=0 351 | selectable=1 352 | hidden=0 353 | zorder=0 354 | time_0=1553791500 355 | value_0=124.086000 356 | 357 | 358 | 359 | 360 | 361 | name=FALCON_F2\Falcon_F2 362 | flags=343 363 | window_num=0 364 | 365 | Header1=----------EA General Settings----------- 366 | MagicNumber=8139310 367 | TerminalType=0 368 | R_Management=true 369 | Slippage=3 370 | IsECNbroker=false 371 | OnJournaling=false 372 | EnableDashboard=true 373 | Header2=----------Trading Rules Variables ----------- 374 | RobotBehavior=daily 375 | usePredictedSL=false 376 | usePredictedTP=false 377 | TimeMaxHoldM1=75 378 | TimeMaxHoldM15=1125 379 | TimeMaxHoldM60=4500 380 | entryTriggerM1=20 381 | entryTriggerM15=50 382 | entryTriggerM60=100 383 | stopLossFactorM1=2.0 384 | stopLossFactorM15=0.8 385 | stopLossFactorM60=0.8 386 | takeProfFactorM1=1.0 387 | takeProfFactorM15=1.0 388 | takeProfFactorM60=1.0 389 | predictor_periodM1=1 390 | predictor_periodM15=15 391 | predictor_periodH1=60 392 | closeAllOnFridays=true 393 | use_market_type=true 394 | Header3=----------Position Sizing Settings----------- 395 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 396 | Lots=0.0 397 | IsSizingOn=true 398 | Risk=1.0 399 | MaxPositionsAllowed=1 400 | Header4=----------TP & SL Settings----------- 401 | UseFixedStopLoss=true 402 | FixedStopLoss=0.0 403 | IsVolatilityStopOn=true 404 | VolBasedSLMultiplier=4.0 405 | UseFixedTakeProfit=true 406 | FixedTakeProfit=0.0 407 | IsVolatilityTakeProfitOn=true 408 | VolBasedTPMultiplier=6.0 409 | Header5=----------Hidden TP & SL Settings----------- 410 | UseHiddenStopLoss=false 411 | FixedStopLoss_Hidden=0.0 412 | IsVolatilityStopLossOn_Hidden=false 413 | VolBasedSLMultiplier_Hidden=0.0 414 | UseHiddenTakeProfit=false 415 | FixedTakeProfit_Hidden=0.0 416 | IsVolatilityTakeProfitOn_Hidden=false 417 | VolBasedTPMultiplier_Hidden=0.0 418 | Header6=----------Breakeven Stops Settings----------- 419 | UseBreakevenStops=false 420 | BreakevenBuffer=0.0 421 | Header7=----------Hidden Breakeven Stops Settings----------- 422 | UseHiddenBreakevenStops=false 423 | BreakevenBuffer_Hidden=0.0 424 | Header8=----------Trailing Stops Settings----------- 425 | UseTrailingStops=false 426 | TrailingStopDistance=0.0 427 | TrailingStopBuffer=0.0 428 | Header9=----------Hidden Trailing Stops Settings----------- 429 | UseHiddenTrailingStops=false 430 | TrailingStopDistance_Hidden=0.0 431 | TrailingStopBuffer_Hidden=0.0 432 | Header10=----------Volatility Trailing Stops Settings----------- 433 | UseVolTrailingStops=false 434 | VolTrailingDistMultiplier=0.0 435 | VolTrailingBuffMultiplier=0.0 436 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 437 | UseHiddenVolTrailing=false 438 | VolTrailingDistMultiplier_Hidden=0.0 439 | VolTrailingBuffMultiplier_Hidden=0.0 440 | Header12=----------Volatility Measurement Settings----------- 441 | atr_period=14 442 | Header13=----------Set Max Loss Limit----------- 443 | IsLossLimitActivated=false 444 | LossLimitPercent=50.0 445 | Header14=----------Set Max Volatility Limit----------- 446 | IsVolLimitActivated=false 447 | VolatilityMultiplier=3.0 448 | ATRTimeframe=60 449 | ATRPeriod=14 450 | 451 | 452 | 453 | 454 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart09.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133842 3 | comment=Trade is not allowed 4 | symbol=EURAUD 5 | period=15 6 | leftpos=47043 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166957410 buy 0.02 EURAUD at 1.60009 48 | period_flags=0 49 | create_time=1549619100 50 | description= 0(#8132308) (8132308) 51 | color=16711680 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1549626300 61 | value_0=1.600090 62 | 63 | 64 | type=22 65 | object_name=#166957410 buy 0.02 EURAUD at 1.60009 stop loss at 1.59343 66 | period_flags=0 67 | create_time=1549619100 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1549626300 78 | value_0=1.593430 79 | 80 | 81 | type=22 82 | object_name=#166957410 buy 0.02 EURAUD at 1.60009 take profit at 1.60675 83 | period_flags=0 84 | create_time=1549619100 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1549626300 95 | value_0=1.606750 96 | 97 | 98 | type=22 99 | object_name=#166957410 buy 0.02 EURAUD at 1.60009 close at 1.59758 100 | period_flags=0 101 | create_time=1549659600 102 | color=16711680 103 | weight=1 104 | background=0 105 | symbol_code=3 106 | anchor_pos=0 107 | filling=0 108 | selectable=1 109 | hidden=0 110 | zorder=0 111 | time_0=1549666800 112 | value_0=1.597580 113 | 114 | 115 | type=2 116 | object_name=#166957410 1.60009 -> 1.59758 117 | period_flags=0 118 | create_time=1549659600 119 | color=16711680 120 | style=2 121 | weight=1 122 | background=0 123 | filling=0 124 | selectable=1 125 | hidden=0 126 | zorder=0 127 | time_0=1549626300 128 | value_0=1.600090 129 | time_1=1549666800 130 | value_1=1.597580 131 | ray=0 132 | 133 | 134 | type=22 135 | object_name=#167261726 sell 0.05 EURAUD at 1.57973 136 | period_flags=0 137 | create_time=1553615101 138 | description= 1(#8139308) (8139308) 139 | color=32768 140 | weight=1 141 | background=0 142 | symbol_code=1 143 | anchor_pos=0 144 | filling=0 145 | selectable=1 146 | hidden=0 147 | zorder=0 148 | time_0=1553622301 149 | value_0=1.579730 150 | 151 | 152 | type=22 153 | object_name=#167261726 sell 0.05 EURAUD at 1.57973 stop loss at 1.58272 154 | period_flags=0 155 | create_time=1553615101 156 | color=255 157 | weight=1 158 | background=0 159 | symbol_code=4 160 | anchor_pos=0 161 | filling=0 162 | selectable=1 163 | hidden=0 164 | zorder=0 165 | time_0=1553622301 166 | value_0=1.582720 167 | 168 | 169 | type=22 170 | object_name=#167261726 sell 0.05 EURAUD at 1.57973 take profit at 1.57599 171 | period_flags=0 172 | create_time=1553615101 173 | color=16711680 174 | weight=1 175 | background=0 176 | symbol_code=4 177 | anchor_pos=0 178 | filling=0 179 | selectable=1 180 | hidden=0 181 | zorder=0 182 | time_0=1553622301 183 | value_0=1.575990 184 | 185 | 186 | type=22 187 | object_name=#167265586 sell 0.03 EURAUD at 1.58383 188 | period_flags=0 189 | create_time=1553649300 190 | description= 1(#8139308) (8139308) 191 | color=32768 192 | weight=1 193 | background=0 194 | symbol_code=1 195 | anchor_pos=0 196 | filling=0 197 | selectable=1 198 | hidden=0 199 | zorder=0 200 | time_0=1553656500 201 | value_0=1.583830 202 | 203 | 204 | type=22 205 | object_name=#167265586 sell 0.03 EURAUD at 1.58383 stop loss at 1.58802 206 | period_flags=0 207 | create_time=1553649300 208 | color=255 209 | weight=1 210 | background=0 211 | symbol_code=4 212 | anchor_pos=0 213 | filling=0 214 | selectable=1 215 | hidden=0 216 | zorder=0 217 | time_0=1553656500 218 | value_0=1.588020 219 | 220 | 221 | type=22 222 | object_name=#167265586 sell 0.03 EURAUD at 1.58383 take profit at 1.57859 223 | period_flags=0 224 | create_time=1553649300 225 | color=16711680 226 | weight=1 227 | background=0 228 | symbol_code=4 229 | anchor_pos=0 230 | filling=0 231 | selectable=1 232 | hidden=0 233 | zorder=0 234 | time_0=1553656500 235 | value_0=1.578590 236 | 237 | 238 | type=22 239 | object_name=#167299056 sell 0.06 EURAUD at 1.58547 240 | period_flags=0 241 | create_time=1553816708 242 | description= 1(#8139308) (8139308) 243 | color=32768 244 | weight=1 245 | background=0 246 | symbol_code=1 247 | anchor_pos=0 248 | filling=0 249 | selectable=1 250 | hidden=0 251 | zorder=0 252 | time_0=1553823908 253 | value_0=1.585470 254 | 255 | 256 | type=22 257 | object_name=#167299056 sell 0.06 EURAUD at 1.58547 stop loss at 1.58774 258 | period_flags=0 259 | create_time=1553816708 260 | color=255 261 | weight=1 262 | background=0 263 | symbol_code=4 264 | anchor_pos=0 265 | filling=0 266 | selectable=1 267 | hidden=0 268 | zorder=0 269 | time_0=1553823908 270 | value_0=1.587740 271 | 272 | 273 | type=22 274 | object_name=#167299056 sell 0.06 EURAUD at 1.58547 take profit at 1.58264 275 | period_flags=0 276 | create_time=1553816708 277 | color=16711680 278 | weight=1 279 | background=0 280 | symbol_code=4 281 | anchor_pos=0 282 | filling=0 283 | selectable=1 284 | hidden=0 285 | zorder=0 286 | time_0=1553823908 287 | value_0=1.582640 288 | 289 | 290 | type=22 291 | object_name=#167301555 sell 0.05 EURAUD at 1.58375 292 | period_flags=0 293 | create_time=1553846400 294 | description= 1(#8139308) (8139308) 295 | color=32768 296 | weight=1 297 | background=0 298 | symbol_code=1 299 | anchor_pos=0 300 | filling=0 301 | selectable=1 302 | hidden=0 303 | zorder=0 304 | time_0=1553853600 305 | value_0=1.583750 306 | 307 | 308 | type=22 309 | object_name=#167301555 sell 0.05 EURAUD at 1.58375 stop loss at 1.58633 310 | period_flags=0 311 | create_time=1553846400 312 | color=255 313 | weight=1 314 | background=0 315 | symbol_code=4 316 | anchor_pos=0 317 | filling=0 318 | selectable=1 319 | hidden=0 320 | zorder=0 321 | time_0=1553853600 322 | value_0=1.586330 323 | 324 | 325 | type=22 326 | object_name=#167301555 sell 0.05 EURAUD at 1.58375 take profit at 1.58053 327 | period_flags=0 328 | create_time=1553846400 329 | color=16711680 330 | weight=1 331 | background=0 332 | symbol_code=4 333 | anchor_pos=0 334 | filling=0 335 | selectable=1 336 | hidden=0 337 | zorder=0 338 | time_0=1553853600 339 | value_0=1.580530 340 | 341 | 342 | type=22 343 | object_name=#167309211 sell 0.07 EURAUD at 1.57975 344 | period_flags=0 345 | create_time=1553886000 346 | description= 1(#8139308) (8139308) 347 | color=32768 348 | weight=1 349 | background=0 350 | symbol_code=1 351 | anchor_pos=0 352 | filling=0 353 | selectable=1 354 | hidden=0 355 | zorder=0 356 | time_0=1553893200 357 | value_0=1.579750 358 | 359 | 360 | type=22 361 | object_name=#167309211 sell 0.07 EURAUD at 1.57975 stop loss at 1.58187 362 | period_flags=0 363 | create_time=1553886000 364 | color=255 365 | weight=1 366 | background=0 367 | symbol_code=4 368 | anchor_pos=0 369 | filling=0 370 | selectable=1 371 | hidden=0 372 | zorder=0 373 | time_0=1553893200 374 | value_0=1.581870 375 | 376 | 377 | type=22 378 | object_name=#167309211 sell 0.07 EURAUD at 1.57975 take profit at 1.57710 379 | period_flags=0 380 | create_time=1553886000 381 | color=16711680 382 | weight=1 383 | background=0 384 | symbol_code=4 385 | anchor_pos=0 386 | filling=0 387 | selectable=1 388 | hidden=0 389 | zorder=0 390 | time_0=1553893200 391 | value_0=1.577100 392 | 393 | 394 | type=22 395 | object_name=#167309211 sell 0.07 EURAUD at 1.57975 close at 1.58001 396 | period_flags=0 397 | create_time=1553889600 398 | color=32768 399 | weight=1 400 | background=0 401 | symbol_code=3 402 | anchor_pos=0 403 | filling=0 404 | selectable=1 405 | hidden=0 406 | zorder=0 407 | time_0=1553896800 408 | value_0=1.580010 409 | 410 | 411 | type=2 412 | object_name=#167309211 1.57975 -> 1.58001 413 | period_flags=0 414 | create_time=1553889600 415 | color=255 416 | style=2 417 | weight=1 418 | background=0 419 | filling=0 420 | selectable=1 421 | hidden=0 422 | zorder=0 423 | time_0=1553893200 424 | value_0=1.579750 425 | time_1=1553896800 426 | value_1=1.580010 427 | ray=0 428 | 429 | 430 | 431 | 432 | 433 | name=FALCON_F2\Falcon_F2 434 | flags=343 435 | window_num=0 436 | 437 | Header1=----------EA General Settings----------- 438 | MagicNumber=8139308 439 | TerminalType=0 440 | R_Management=true 441 | Slippage=3 442 | IsECNbroker=false 443 | OnJournaling=false 444 | EnableDashboard=true 445 | Header2=----------Trading Rules Variables ----------- 446 | RobotBehavior=daily 447 | usePredictedSL=false 448 | usePredictedTP=false 449 | TimeMaxHoldM1=75 450 | TimeMaxHoldM15=1125 451 | TimeMaxHoldM60=4500 452 | entryTriggerM1=20 453 | entryTriggerM15=50 454 | entryTriggerM60=100 455 | stopLossFactorM1=2.0 456 | stopLossFactorM15=0.8 457 | stopLossFactorM60=0.8 458 | takeProfFactorM1=1.0 459 | takeProfFactorM15=1.0 460 | takeProfFactorM60=1.0 461 | predictor_periodM1=1 462 | predictor_periodM15=15 463 | predictor_periodH1=60 464 | closeAllOnFridays=true 465 | use_market_type=true 466 | Header3=----------Position Sizing Settings----------- 467 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 468 | Lots=0.0 469 | IsSizingOn=true 470 | Risk=1.0 471 | MaxPositionsAllowed=1 472 | Header4=----------TP & SL Settings----------- 473 | UseFixedStopLoss=true 474 | FixedStopLoss=0.0 475 | IsVolatilityStopOn=true 476 | VolBasedSLMultiplier=4.0 477 | UseFixedTakeProfit=true 478 | FixedTakeProfit=0.0 479 | IsVolatilityTakeProfitOn=true 480 | VolBasedTPMultiplier=6.0 481 | Header5=----------Hidden TP & SL Settings----------- 482 | UseHiddenStopLoss=false 483 | FixedStopLoss_Hidden=0.0 484 | IsVolatilityStopLossOn_Hidden=false 485 | VolBasedSLMultiplier_Hidden=0.0 486 | UseHiddenTakeProfit=false 487 | FixedTakeProfit_Hidden=0.0 488 | IsVolatilityTakeProfitOn_Hidden=false 489 | VolBasedTPMultiplier_Hidden=0.0 490 | Header6=----------Breakeven Stops Settings----------- 491 | UseBreakevenStops=false 492 | BreakevenBuffer=0.0 493 | Header7=----------Hidden Breakeven Stops Settings----------- 494 | UseHiddenBreakevenStops=false 495 | BreakevenBuffer_Hidden=0.0 496 | Header8=----------Trailing Stops Settings----------- 497 | UseTrailingStops=false 498 | TrailingStopDistance=0.0 499 | TrailingStopBuffer=0.0 500 | Header9=----------Hidden Trailing Stops Settings----------- 501 | UseHiddenTrailingStops=false 502 | TrailingStopDistance_Hidden=0.0 503 | TrailingStopBuffer_Hidden=0.0 504 | Header10=----------Volatility Trailing Stops Settings----------- 505 | UseVolTrailingStops=false 506 | VolTrailingDistMultiplier=0.0 507 | VolTrailingBuffMultiplier=0.0 508 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 509 | UseHiddenVolTrailing=false 510 | VolTrailingDistMultiplier_Hidden=0.0 511 | VolTrailingBuffMultiplier_Hidden=0.0 512 | Header12=----------Volatility Measurement Settings----------- 513 | atr_period=14 514 | Header13=----------Set Max Loss Limit----------- 515 | IsLossLimitActivated=false 516 | LossLimitPercent=50.0 517 | Header14=----------Set Max Volatility Limit----------- 518 | IsVolLimitActivated=false 519 | VolatilityMultiplier=3.0 520 | ATRTimeframe=60 521 | ATRPeriod=14 522 | 523 | 524 | 525 | 526 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart25.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133858 3 | comment=Trade is not allowed 4 | symbol=GBPAUD 5 | period=15 6 | leftpos=44996 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166924693 sell 0.01 GBPAUD at 1.80394 48 | period_flags=0 49 | create_time=1549238400 50 | description= 1(#8132324) (8132324) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1549245600 61 | value_0=1.803940 62 | 63 | 64 | type=22 65 | object_name=#166924693 sell 0.01 GBPAUD at 1.80394 stop loss at 1.81336 66 | period_flags=0 67 | create_time=1549238400 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1549245600 78 | value_0=1.813360 79 | 80 | 81 | type=22 82 | object_name=#166924693 sell 0.01 GBPAUD at 1.80394 take profit at 1.79452 83 | period_flags=0 84 | create_time=1549238400 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1549245600 95 | value_0=1.794520 96 | 97 | 98 | type=22 99 | object_name=#166954558 buy 0.02 GBPAUD at 1.82575 100 | period_flags=0 101 | create_time=1549580400 102 | description= 0(#8132324) (8132324) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1549587600 113 | value_0=1.825750 114 | 115 | 116 | type=22 117 | object_name=#166954558 buy 0.02 GBPAUD at 1.82575 stop loss at 1.81780 118 | period_flags=0 119 | create_time=1549580400 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1549587600 130 | value_0=1.817800 131 | 132 | 133 | type=22 134 | object_name=#166954558 buy 0.02 GBPAUD at 1.82575 take profit at 1.83370 135 | period_flags=0 136 | create_time=1549580400 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1549587600 147 | value_0=1.833700 148 | 149 | 150 | type=22 151 | object_name=#166960471 buy 0.01 GBPAUD at 1.82527 152 | period_flags=0 153 | create_time=1549643400 154 | description= 0(#8132324) (8132324) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1549650600 165 | value_0=1.825270 166 | 167 | 168 | type=22 169 | object_name=#166960471 buy 0.01 GBPAUD at 1.82527 stop loss at 1.81522 170 | period_flags=0 171 | create_time=1549643400 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1549650600 182 | value_0=1.815220 183 | 184 | 185 | type=22 186 | object_name=#166960471 buy 0.01 GBPAUD at 1.82527 take profit at 1.83532 187 | period_flags=0 188 | create_time=1549643400 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1549650600 199 | value_0=1.835320 200 | 201 | 202 | type=22 203 | object_name=#166960471 buy 0.01 GBPAUD at 1.82527 close at 1.82515 204 | period_flags=0 205 | create_time=1549659600 206 | color=16711680 207 | weight=1 208 | background=0 209 | symbol_code=3 210 | anchor_pos=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1549666800 216 | value_0=1.825150 217 | 218 | 219 | type=2 220 | object_name=#166960471 1.82527 -> 1.82515 221 | period_flags=0 222 | create_time=1549659600 223 | color=16711680 224 | style=2 225 | weight=1 226 | background=0 227 | filling=0 228 | selectable=1 229 | hidden=0 230 | zorder=0 231 | time_0=1549650600 232 | value_0=1.825270 233 | time_1=1549666800 234 | value_1=1.825150 235 | ray=0 236 | 237 | 238 | type=22 239 | object_name=#167265800 sell 0.04 GBPAUD at 1.85357 240 | period_flags=0 241 | create_time=1553651104 242 | description= 1(#8139324) (8139324) 243 | color=32768 244 | weight=1 245 | background=0 246 | symbol_code=1 247 | anchor_pos=0 248 | filling=0 249 | selectable=1 250 | hidden=0 251 | zorder=0 252 | time_0=1553658303 253 | value_0=1.853570 254 | 255 | 256 | type=22 257 | object_name=#167265800 sell 0.04 GBPAUD at 1.85357 stop loss at 1.85737 258 | period_flags=0 259 | create_time=1553651104 260 | color=255 261 | weight=1 262 | background=0 263 | symbol_code=4 264 | anchor_pos=0 265 | filling=0 266 | selectable=1 267 | hidden=0 268 | zorder=0 269 | time_0=1553658303 270 | value_0=1.857370 271 | 272 | 273 | type=22 274 | object_name=#167265800 sell 0.04 GBPAUD at 1.85357 take profit at 1.84883 275 | period_flags=0 276 | create_time=1553651104 277 | color=16711680 278 | weight=1 279 | background=0 280 | symbol_code=4 281 | anchor_pos=0 282 | filling=0 283 | selectable=1 284 | hidden=0 285 | zorder=0 286 | time_0=1553658303 287 | value_0=1.848830 288 | 289 | 290 | type=22 291 | object_name=#167294048 buy 0.05 GBPAUD at 1.85048 292 | period_flags=0 293 | create_time=1553780700 294 | description= 0(#8139324) (8139324) 295 | color=16711680 296 | weight=1 297 | background=0 298 | symbol_code=1 299 | anchor_pos=0 300 | filling=0 301 | selectable=1 302 | hidden=0 303 | zorder=0 304 | time_0=1553787900 305 | value_0=1.850480 306 | 307 | 308 | type=22 309 | object_name=#167294048 buy 0.05 GBPAUD at 1.85048 stop loss at 1.84748 310 | period_flags=0 311 | create_time=1553780700 312 | color=255 313 | weight=1 314 | background=0 315 | symbol_code=4 316 | anchor_pos=0 317 | filling=0 318 | selectable=1 319 | hidden=0 320 | zorder=0 321 | time_0=1553787900 322 | value_0=1.847480 323 | 324 | 325 | type=22 326 | object_name=#167294048 buy 0.05 GBPAUD at 1.85048 take profit at 1.85422 327 | period_flags=0 328 | create_time=1553780700 329 | color=16711680 330 | weight=1 331 | background=0 332 | symbol_code=4 333 | anchor_pos=0 334 | filling=0 335 | selectable=1 336 | hidden=0 337 | zorder=0 338 | time_0=1553787900 339 | value_0=1.854220 340 | 341 | 342 | type=22 343 | object_name=#167299514 sell 0.02 GBPAUD at 1.84269 344 | period_flags=0 345 | create_time=1553821200 346 | description= 1(#8139324) (8139324) 347 | color=32768 348 | weight=1 349 | background=0 350 | symbol_code=1 351 | anchor_pos=0 352 | filling=0 353 | selectable=1 354 | hidden=0 355 | zorder=0 356 | time_0=1553828400 357 | value_0=1.842690 358 | 359 | 360 | type=22 361 | object_name=#167299514 sell 0.02 GBPAUD at 1.84269 stop loss at 1.85067 362 | period_flags=0 363 | create_time=1553821200 364 | color=255 365 | weight=1 366 | background=0 367 | symbol_code=4 368 | anchor_pos=0 369 | filling=0 370 | selectable=1 371 | hidden=0 372 | zorder=0 373 | time_0=1553828400 374 | value_0=1.850670 375 | 376 | 377 | type=22 378 | object_name=#167299514 sell 0.02 GBPAUD at 1.84269 take profit at 1.83272 379 | period_flags=0 380 | create_time=1553821200 381 | color=16711680 382 | weight=1 383 | background=0 384 | symbol_code=4 385 | anchor_pos=0 386 | filling=0 387 | selectable=1 388 | hidden=0 389 | zorder=0 390 | time_0=1553828400 391 | value_0=1.832720 392 | 393 | 394 | type=22 395 | object_name=#167304280 sell 0.03 GBPAUD at 1.84781 396 | period_flags=0 397 | create_time=1553858100 398 | description= 1(#8139324) (8139324) 399 | color=32768 400 | weight=1 401 | background=0 402 | symbol_code=1 403 | anchor_pos=0 404 | filling=0 405 | selectable=1 406 | hidden=0 407 | zorder=0 408 | time_0=1553865300 409 | value_0=1.847810 410 | 411 | 412 | type=22 413 | object_name=#167304280 sell 0.03 GBPAUD at 1.84781 stop loss at 1.85188 414 | period_flags=0 415 | create_time=1553858100 416 | color=255 417 | weight=1 418 | background=0 419 | symbol_code=4 420 | anchor_pos=0 421 | filling=0 422 | selectable=1 423 | hidden=0 424 | zorder=0 425 | time_0=1553865300 426 | value_0=1.851880 427 | 428 | 429 | type=22 430 | object_name=#167304280 sell 0.03 GBPAUD at 1.84781 take profit at 1.84273 431 | period_flags=0 432 | create_time=1553858100 433 | color=16711680 434 | weight=1 435 | background=0 436 | symbol_code=4 437 | anchor_pos=0 438 | filling=0 439 | selectable=1 440 | hidden=0 441 | zorder=0 442 | time_0=1553865300 443 | value_0=1.842730 444 | 445 | 446 | 447 | 448 | 449 | name=FALCON_F2\Falcon_F2 450 | flags=343 451 | window_num=0 452 | 453 | Header1=----------EA General Settings----------- 454 | MagicNumber=8139324 455 | TerminalType=0 456 | R_Management=true 457 | Slippage=3 458 | IsECNbroker=false 459 | OnJournaling=false 460 | EnableDashboard=true 461 | Header2=----------Trading Rules Variables ----------- 462 | RobotBehavior=daily 463 | usePredictedSL=false 464 | usePredictedTP=false 465 | TimeMaxHoldM1=75 466 | TimeMaxHoldM15=1125 467 | TimeMaxHoldM60=4500 468 | entryTriggerM1=20 469 | entryTriggerM15=50 470 | entryTriggerM60=100 471 | stopLossFactorM1=2.0 472 | stopLossFactorM15=0.8 473 | stopLossFactorM60=0.8 474 | takeProfFactorM1=1.0 475 | takeProfFactorM15=1.0 476 | takeProfFactorM60=1.0 477 | predictor_periodM1=1 478 | predictor_periodM15=15 479 | predictor_periodH1=60 480 | closeAllOnFridays=true 481 | use_market_type=true 482 | Header3=----------Position Sizing Settings----------- 483 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 484 | Lots=0.0 485 | IsSizingOn=true 486 | Risk=1.0 487 | MaxPositionsAllowed=1 488 | Header4=----------TP & SL Settings----------- 489 | UseFixedStopLoss=true 490 | FixedStopLoss=0.0 491 | IsVolatilityStopOn=true 492 | VolBasedSLMultiplier=4.0 493 | UseFixedTakeProfit=true 494 | FixedTakeProfit=0.0 495 | IsVolatilityTakeProfitOn=true 496 | VolBasedTPMultiplier=6.0 497 | Header5=----------Hidden TP & SL Settings----------- 498 | UseHiddenStopLoss=false 499 | FixedStopLoss_Hidden=0.0 500 | IsVolatilityStopLossOn_Hidden=false 501 | VolBasedSLMultiplier_Hidden=0.0 502 | UseHiddenTakeProfit=false 503 | FixedTakeProfit_Hidden=0.0 504 | IsVolatilityTakeProfitOn_Hidden=false 505 | VolBasedTPMultiplier_Hidden=0.0 506 | Header6=----------Breakeven Stops Settings----------- 507 | UseBreakevenStops=false 508 | BreakevenBuffer=0.0 509 | Header7=----------Hidden Breakeven Stops Settings----------- 510 | UseHiddenBreakevenStops=false 511 | BreakevenBuffer_Hidden=0.0 512 | Header8=----------Trailing Stops Settings----------- 513 | UseTrailingStops=false 514 | TrailingStopDistance=0.0 515 | TrailingStopBuffer=0.0 516 | Header9=----------Hidden Trailing Stops Settings----------- 517 | UseHiddenTrailingStops=false 518 | TrailingStopDistance_Hidden=0.0 519 | TrailingStopBuffer_Hidden=0.0 520 | Header10=----------Volatility Trailing Stops Settings----------- 521 | UseVolTrailingStops=false 522 | VolTrailingDistMultiplier=0.0 523 | VolTrailingBuffMultiplier=0.0 524 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 525 | UseHiddenVolTrailing=false 526 | VolTrailingDistMultiplier_Hidden=0.0 527 | VolTrailingBuffMultiplier_Hidden=0.0 528 | Header12=----------Volatility Measurement Settings----------- 529 | atr_period=14 530 | Header13=----------Set Max Loss Limit----------- 531 | IsLossLimitActivated=false 532 | LossLimitPercent=50.0 533 | Header14=----------Set Max Volatility Limit----------- 534 | IsVolLimitActivated=false 535 | VolatilityMultiplier=3.0 536 | ATRTimeframe=60 537 | ATRPeriod=14 538 | 539 | 540 | 541 | 542 | -------------------------------------------------------------------------------- /mt4_profile/T3_FALCON_F2/chart14.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925827133847 3 | comment=Trade is not allowed 4 | symbol=GBPJPY 5 | period=15 6 | leftpos=47022 7 | digits=3 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#166600594 sell 0.02 GBPJPY at 140.569 48 | period_flags=0 49 | create_time=1545644700 50 | description= 1(#8132313) (8132313) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1545651900 61 | value_0=140.569000 62 | 63 | 64 | type=22 65 | object_name=#166600594 sell 0.02 GBPJPY at 140.569 stop loss at 141.344 66 | period_flags=0 67 | create_time=1545644700 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1545651900 78 | value_0=141.344000 79 | 80 | 81 | type=22 82 | object_name=#166600594 sell 0.02 GBPJPY at 140.569 take profit at 139.794 83 | period_flags=0 84 | create_time=1545644700 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1545651900 95 | value_0=139.794000 96 | 97 | 98 | type=22 99 | object_name=#166624558 buy 0.01 GBPJPY at 140.025 100 | period_flags=0 101 | create_time=1545921000 102 | description= 0(#8132313) (8132313) 103 | color=16711680 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1545928200 113 | value_0=140.025000 114 | 115 | 116 | type=22 117 | object_name=#166624558 buy 0.01 GBPJPY at 140.025 stop loss at 139.171 118 | period_flags=0 119 | create_time=1545921000 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1545928200 130 | value_0=139.171000 131 | 132 | 133 | type=22 134 | object_name=#166624558 buy 0.01 GBPJPY at 140.025 take profit at 140.879 135 | period_flags=0 136 | create_time=1545921000 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1545928200 147 | value_0=140.879000 148 | 149 | 150 | type=22 151 | object_name=#166646001 buy 0.01 GBPJPY at 138.236 152 | period_flags=0 153 | create_time=1546426800 154 | description= 0(#8132313) (8132313) 155 | color=16711680 156 | weight=1 157 | background=0 158 | symbol_code=1 159 | anchor_pos=0 160 | filling=0 161 | selectable=1 162 | hidden=0 163 | zorder=0 164 | time_0=1546434000 165 | value_0=138.236000 166 | 167 | 168 | type=22 169 | object_name=#166646001 buy 0.01 GBPJPY at 138.236 stop loss at 136.897 170 | period_flags=0 171 | create_time=1546426800 172 | color=255 173 | weight=1 174 | background=0 175 | symbol_code=4 176 | anchor_pos=0 177 | filling=0 178 | selectable=1 179 | hidden=0 180 | zorder=0 181 | time_0=1546434000 182 | value_0=136.897000 183 | 184 | 185 | type=22 186 | object_name=#166646001 buy 0.01 GBPJPY at 138.236 take profit at 139.575 187 | period_flags=0 188 | create_time=1546426800 189 | color=16711680 190 | weight=1 191 | background=0 192 | symbol_code=4 193 | anchor_pos=0 194 | filling=0 195 | selectable=1 196 | hidden=0 197 | zorder=0 198 | time_0=1546434000 199 | value_0=139.575000 200 | 201 | 202 | type=22 203 | object_name=#167283812 buy 0.05 GBPJPY at 145.054 204 | period_flags=0 205 | create_time=1553763600 206 | description= 0(#8139313) (8139313) 207 | color=16711680 208 | weight=1 209 | background=0 210 | symbol_code=1 211 | anchor_pos=0 212 | filling=0 213 | selectable=1 214 | hidden=0 215 | zorder=0 216 | time_0=1553770800 217 | value_0=145.054000 218 | 219 | 220 | type=22 221 | object_name=#167283812 buy 0.05 GBPJPY at 145.054 stop loss at 144.831 222 | period_flags=0 223 | create_time=1553763600 224 | color=255 225 | weight=1 226 | background=0 227 | symbol_code=4 228 | anchor_pos=0 229 | filling=0 230 | selectable=1 231 | hidden=0 232 | zorder=0 233 | time_0=1553770800 234 | value_0=144.831000 235 | 236 | 237 | type=22 238 | object_name=#167283812 buy 0.05 GBPJPY at 145.054 take profit at 145.332 239 | period_flags=0 240 | create_time=1553763600 241 | color=16711680 242 | weight=1 243 | background=0 244 | symbol_code=4 245 | anchor_pos=0 246 | filling=0 247 | selectable=1 248 | hidden=0 249 | zorder=0 250 | time_0=1553770800 251 | value_0=145.332000 252 | 253 | 254 | type=22 255 | object_name=#167284934 buy 0.05 GBPJPY at 144.860 256 | period_flags=0 257 | create_time=1553769000 258 | description= 0(#8139313) (8139313) 259 | color=16711680 260 | weight=1 261 | background=0 262 | symbol_code=1 263 | anchor_pos=0 264 | filling=0 265 | selectable=1 266 | hidden=0 267 | zorder=0 268 | time_0=1553776200 269 | value_0=144.860000 270 | 271 | 272 | type=22 273 | object_name=#167284934 buy 0.05 GBPJPY at 144.860 stop loss at 144.666 274 | period_flags=0 275 | create_time=1553769000 276 | color=255 277 | weight=1 278 | background=0 279 | symbol_code=4 280 | anchor_pos=0 281 | filling=0 282 | selectable=1 283 | hidden=0 284 | zorder=0 285 | time_0=1553776200 286 | value_0=144.666000 287 | 288 | 289 | type=22 290 | object_name=#167284934 buy 0.05 GBPJPY at 144.860 take profit at 145.103 291 | period_flags=0 292 | create_time=1553769000 293 | color=16711680 294 | weight=1 295 | background=0 296 | symbol_code=4 297 | anchor_pos=0 298 | filling=0 299 | selectable=1 300 | hidden=0 301 | zorder=0 302 | time_0=1553776200 303 | value_0=145.103000 304 | 305 | 306 | type=22 307 | object_name=#167293058 buy 0.05 GBPJPY at 145.015 308 | period_flags=0 309 | create_time=1553778000 310 | description= 0(#8139313) (8139313) 311 | color=16711680 312 | weight=1 313 | background=0 314 | symbol_code=1 315 | anchor_pos=0 316 | filling=0 317 | selectable=1 318 | hidden=0 319 | zorder=0 320 | time_0=1553785200 321 | value_0=145.015000 322 | 323 | 324 | type=22 325 | object_name=#167293058 buy 0.05 GBPJPY at 145.015 stop loss at 144.812 326 | period_flags=0 327 | create_time=1553778000 328 | color=255 329 | weight=1 330 | background=0 331 | symbol_code=4 332 | anchor_pos=0 333 | filling=0 334 | selectable=1 335 | hidden=0 336 | zorder=0 337 | time_0=1553785200 338 | value_0=144.812000 339 | 340 | 341 | type=22 342 | object_name=#167293058 buy 0.05 GBPJPY at 145.015 take profit at 145.268 343 | period_flags=0 344 | create_time=1553778000 345 | color=16711680 346 | weight=1 347 | background=0 348 | symbol_code=4 349 | anchor_pos=0 350 | filling=0 351 | selectable=1 352 | hidden=0 353 | zorder=0 354 | time_0=1553785200 355 | value_0=145.268000 356 | 357 | 358 | type=22 359 | object_name=#167294574 buy 0.02 GBPJPY at 144.995 360 | period_flags=0 361 | create_time=1553782500 362 | description= 0(#8139313) (8139313) 363 | color=16711680 364 | weight=1 365 | background=0 366 | symbol_code=1 367 | anchor_pos=0 368 | filling=0 369 | selectable=1 370 | hidden=0 371 | zorder=0 372 | time_0=1553789700 373 | value_0=144.995000 374 | 375 | 376 | type=22 377 | object_name=#167294574 buy 0.02 GBPJPY at 144.995 stop loss at 144.388 378 | period_flags=0 379 | create_time=1553782500 380 | color=255 381 | weight=1 382 | background=0 383 | symbol_code=4 384 | anchor_pos=0 385 | filling=0 386 | selectable=1 387 | hidden=0 388 | zorder=0 389 | time_0=1553789700 390 | value_0=144.388000 391 | 392 | 393 | type=22 394 | object_name=#167294574 buy 0.02 GBPJPY at 144.995 take profit at 145.754 395 | period_flags=0 396 | create_time=1553782500 397 | color=16711680 398 | weight=1 399 | background=0 400 | symbol_code=4 401 | anchor_pos=0 402 | filling=0 403 | selectable=1 404 | hidden=0 405 | zorder=0 406 | time_0=1553789700 407 | value_0=145.754000 408 | 409 | 410 | type=22 411 | object_name=#167297801 sell 0.01 GBPJPY at 144.363 412 | period_flags=0 413 | create_time=1553802300 414 | description= 1(#8139313) (8139313) 415 | color=32768 416 | weight=1 417 | background=0 418 | symbol_code=1 419 | anchor_pos=0 420 | filling=0 421 | selectable=1 422 | hidden=0 423 | zorder=0 424 | time_0=1553809500 425 | value_0=144.363000 426 | 427 | 428 | type=22 429 | object_name=#167297801 sell 0.01 GBPJPY at 144.363 stop loss at 145.295 430 | period_flags=0 431 | create_time=1553802300 432 | color=255 433 | weight=1 434 | background=0 435 | symbol_code=4 436 | anchor_pos=0 437 | filling=0 438 | selectable=1 439 | hidden=0 440 | zorder=0 441 | time_0=1553809500 442 | value_0=145.295000 443 | 444 | 445 | type=22 446 | object_name=#167297801 sell 0.01 GBPJPY at 144.363 take profit at 143.198 447 | period_flags=0 448 | create_time=1553802300 449 | color=16711680 450 | weight=1 451 | background=0 452 | symbol_code=4 453 | anchor_pos=0 454 | filling=0 455 | selectable=1 456 | hidden=0 457 | zorder=0 458 | time_0=1553809500 459 | value_0=143.198000 460 | 461 | 462 | 463 | 464 | 465 | name=FALCON_F2\Falcon_F2 466 | flags=343 467 | window_num=0 468 | 469 | Header1=----------EA General Settings----------- 470 | MagicNumber=8139313 471 | TerminalType=0 472 | R_Management=true 473 | Slippage=3 474 | IsECNbroker=false 475 | OnJournaling=false 476 | EnableDashboard=true 477 | Header2=----------Trading Rules Variables ----------- 478 | RobotBehavior=daily 479 | usePredictedSL=false 480 | usePredictedTP=false 481 | TimeMaxHoldM1=75 482 | TimeMaxHoldM15=1125 483 | TimeMaxHoldM60=4500 484 | entryTriggerM1=20 485 | entryTriggerM15=50 486 | entryTriggerM60=100 487 | stopLossFactorM1=2.0 488 | stopLossFactorM15=0.8 489 | stopLossFactorM60=0.8 490 | takeProfFactorM1=1.0 491 | takeProfFactorM15=1.0 492 | takeProfFactorM60=1.0 493 | predictor_periodM1=1 494 | predictor_periodM15=15 495 | predictor_periodH1=60 496 | closeAllOnFridays=true 497 | use_market_type=true 498 | Header3=----------Position Sizing Settings----------- 499 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 500 | Lots=0.0 501 | IsSizingOn=true 502 | Risk=1.0 503 | MaxPositionsAllowed=1 504 | Header4=----------TP & SL Settings----------- 505 | UseFixedStopLoss=true 506 | FixedStopLoss=0.0 507 | IsVolatilityStopOn=true 508 | VolBasedSLMultiplier=4.0 509 | UseFixedTakeProfit=true 510 | FixedTakeProfit=0.0 511 | IsVolatilityTakeProfitOn=true 512 | VolBasedTPMultiplier=6.0 513 | Header5=----------Hidden TP & SL Settings----------- 514 | UseHiddenStopLoss=false 515 | FixedStopLoss_Hidden=0.0 516 | IsVolatilityStopLossOn_Hidden=false 517 | VolBasedSLMultiplier_Hidden=0.0 518 | UseHiddenTakeProfit=false 519 | FixedTakeProfit_Hidden=0.0 520 | IsVolatilityTakeProfitOn_Hidden=false 521 | VolBasedTPMultiplier_Hidden=0.0 522 | Header6=----------Breakeven Stops Settings----------- 523 | UseBreakevenStops=false 524 | BreakevenBuffer=0.0 525 | Header7=----------Hidden Breakeven Stops Settings----------- 526 | UseHiddenBreakevenStops=false 527 | BreakevenBuffer_Hidden=0.0 528 | Header8=----------Trailing Stops Settings----------- 529 | UseTrailingStops=false 530 | TrailingStopDistance=0.0 531 | TrailingStopBuffer=0.0 532 | Header9=----------Hidden Trailing Stops Settings----------- 533 | UseHiddenTrailingStops=false 534 | TrailingStopDistance_Hidden=0.0 535 | TrailingStopBuffer_Hidden=0.0 536 | Header10=----------Volatility Trailing Stops Settings----------- 537 | UseVolTrailingStops=false 538 | VolTrailingDistMultiplier=0.0 539 | VolTrailingBuffMultiplier=0.0 540 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 541 | UseHiddenVolTrailing=false 542 | VolTrailingDistMultiplier_Hidden=0.0 543 | VolTrailingBuffMultiplier_Hidden=0.0 544 | Header12=----------Volatility Measurement Settings----------- 545 | atr_period=14 546 | Header13=----------Set Max Loss Limit----------- 547 | IsLossLimitActivated=false 548 | LossLimitPercent=50.0 549 | Header14=----------Set Max Volatility Limit----------- 550 | IsVolLimitActivated=false 551 | VolatilityMultiplier=3.0 552 | ATRTimeframe=60 553 | ATRPeriod=14 554 | 555 | 556 | 557 | 558 | -------------------------------------------------------------------------------- /mt4_profile/T1_FALCON_F2/chart27.chr: -------------------------------------------------------------------------------- 1 | 2 | id=131185925660681584 3 | comment=Trade is allowed 4 | symbol=NZDCHF 5 | period=15 6 | leftpos=56949 7 | digits=5 8 | scale=8 9 | graph=1 10 | fore=1 11 | grid=0 12 | volume=0 13 | scroll=1 14 | shift=1 15 | ohlc=1 16 | one_click=0 17 | one_click_btn=1 18 | askline=0 19 | days=1 20 | descriptions=0 21 | shift_size=20 22 | fixed_pos=0 23 | window_left=0 24 | window_top=0 25 | window_right=363 26 | window_bottom=431 27 | window_type=1 28 | background_color=16777215 29 | foreground_color=0 30 | barup_color=0 31 | bardown_color=0 32 | bullcandle_color=16777215 33 | bearcandle_color=0 34 | chartline_color=0 35 | volumes_color=32768 36 | grid_color=12632256 37 | askline_color=17919 38 | stops_color=17919 39 | 40 | 41 | height=148 42 | fixed_height=0 43 | 44 | name=main 45 | 46 | type=22 47 | object_name=#167309359 sell 0.01 NZDCHF at 0.67768 48 | period_flags=0 49 | create_time=1553887801 50 | description= 1(#8139126) (8139126) 51 | color=32768 52 | weight=1 53 | background=0 54 | symbol_code=1 55 | anchor_pos=0 56 | filling=0 57 | selectable=1 58 | hidden=0 59 | zorder=0 60 | time_0=1553895001 61 | value_0=0.677680 62 | 63 | 64 | type=22 65 | object_name=#167309359 sell 0.01 NZDCHF at 0.67768 stop loss at 0.67943 66 | period_flags=0 67 | create_time=1553887801 68 | color=255 69 | weight=1 70 | background=0 71 | symbol_code=4 72 | anchor_pos=0 73 | filling=0 74 | selectable=1 75 | hidden=0 76 | zorder=0 77 | time_0=1553895001 78 | value_0=0.679430 79 | 80 | 81 | type=22 82 | object_name=#167309359 sell 0.01 NZDCHF at 0.67768 take profit at 0.67550 83 | period_flags=0 84 | create_time=1553887801 85 | color=16711680 86 | weight=1 87 | background=0 88 | symbol_code=4 89 | anchor_pos=0 90 | filling=0 91 | selectable=1 92 | hidden=0 93 | zorder=0 94 | time_0=1553895001 95 | value_0=0.675500 96 | 97 | 98 | type=22 99 | object_name=#167309412 sell 0.01 NZDCHF at 0.67782 100 | period_flags=0 101 | create_time=1553888702 102 | description= 1(#8139126) (8139126) 103 | color=32768 104 | weight=1 105 | background=0 106 | symbol_code=1 107 | anchor_pos=0 108 | filling=0 109 | selectable=1 110 | hidden=0 111 | zorder=0 112 | time_0=1553895902 113 | value_0=0.677820 114 | 115 | 116 | type=22 117 | object_name=#167309412 sell 0.01 NZDCHF at 0.67782 stop loss at 0.67957 118 | period_flags=0 119 | create_time=1553888702 120 | color=255 121 | weight=1 122 | background=0 123 | symbol_code=4 124 | anchor_pos=0 125 | filling=0 126 | selectable=1 127 | hidden=0 128 | zorder=0 129 | time_0=1553895902 130 | value_0=0.679570 131 | 132 | 133 | type=22 134 | object_name=#167309412 sell 0.01 NZDCHF at 0.67782 take profit at 0.67564 135 | period_flags=0 136 | create_time=1553888702 137 | color=16711680 138 | weight=1 139 | background=0 140 | symbol_code=4 141 | anchor_pos=0 142 | filling=0 143 | selectable=1 144 | hidden=0 145 | zorder=0 146 | time_0=1553895902 147 | value_0=0.675640 148 | 149 | 150 | type=22 151 | object_name=#167309412 sell 0.01 NZDCHF at 0.67782 close at 0.67820 152 | period_flags=0 153 | create_time=1553889600 154 | color=32768 155 | weight=1 156 | background=0 157 | symbol_code=3 158 | anchor_pos=0 159 | filling=0 160 | selectable=1 161 | hidden=0 162 | zorder=0 163 | time_0=1553896800 164 | value_0=0.678200 165 | 166 | 167 | type=2 168 | object_name=#167309412 0.67782 -> 0.67820 169 | period_flags=0 170 | create_time=1553889600 171 | color=255 172 | style=2 173 | weight=1 174 | background=0 175 | filling=0 176 | selectable=1 177 | hidden=0 178 | zorder=0 179 | time_0=1553895902 180 | value_0=0.677820 181 | time_1=1553896800 182 | value_1=0.678200 183 | ray=0 184 | 185 | 186 | type=22 187 | object_name=#167309359 sell 0.01 NZDCHF at 0.67768 close at 0.67820 188 | period_flags=0 189 | create_time=1553889600 190 | color=32768 191 | weight=1 192 | background=0 193 | symbol_code=3 194 | anchor_pos=0 195 | filling=0 196 | selectable=1 197 | hidden=0 198 | zorder=0 199 | time_0=1553896800 200 | value_0=0.678200 201 | 202 | 203 | type=2 204 | object_name=#167309359 0.67768 -> 0.67820 205 | period_flags=0 206 | create_time=1553889600 207 | color=255 208 | style=2 209 | weight=1 210 | background=0 211 | filling=0 212 | selectable=1 213 | hidden=0 214 | zorder=0 215 | time_0=1553895001 216 | value_0=0.677680 217 | time_1=1553896800 218 | value_1=0.678200 219 | ray=0 220 | 221 | 222 | type=22 223 | object_name=#167411043 buy 0.01 NZDCHF at 0.67860 224 | period_flags=0 225 | create_time=1555286400 226 | description= 0(#8139126) (8139126) 227 | color=16711680 228 | weight=1 229 | background=0 230 | symbol_code=1 231 | anchor_pos=0 232 | filling=0 233 | selectable=1 234 | hidden=0 235 | zorder=0 236 | time_0=1555297200 237 | value_0=0.678600 238 | 239 | 240 | type=22 241 | object_name=#167411043 buy 0.01 NZDCHF at 0.67860 stop loss at 0.67697 242 | period_flags=0 243 | create_time=1555286400 244 | color=255 245 | weight=1 246 | background=0 247 | symbol_code=4 248 | anchor_pos=0 249 | filling=0 250 | selectable=1 251 | hidden=0 252 | zorder=0 253 | time_0=1555297200 254 | value_0=0.676970 255 | 256 | 257 | type=22 258 | object_name=#167411043 buy 0.01 NZDCHF at 0.67860 take profit at 0.68063 259 | period_flags=0 260 | create_time=1555286400 261 | color=16711680 262 | weight=1 263 | background=0 264 | symbol_code=4 265 | anchor_pos=0 266 | filling=0 267 | selectable=1 268 | hidden=0 269 | zorder=0 270 | time_0=1555297200 271 | value_0=0.680630 272 | 273 | 274 | type=22 275 | object_name=#167411152 buy 0.01 NZDCHF at 0.67873 276 | period_flags=0 277 | create_time=1555287300 278 | description= 0(#8139126) (8139126) 279 | color=16711680 280 | weight=1 281 | background=0 282 | symbol_code=1 283 | anchor_pos=0 284 | filling=0 285 | selectable=1 286 | hidden=0 287 | zorder=0 288 | time_0=1555298100 289 | value_0=0.678730 290 | 291 | 292 | type=22 293 | object_name=#167411152 buy 0.01 NZDCHF at 0.67873 stop loss at 0.67710 294 | period_flags=0 295 | create_time=1555287300 296 | color=255 297 | weight=1 298 | background=0 299 | symbol_code=4 300 | anchor_pos=0 301 | filling=0 302 | selectable=1 303 | hidden=0 304 | zorder=0 305 | time_0=1555298100 306 | value_0=0.677100 307 | 308 | 309 | type=22 310 | object_name=#167411152 buy 0.01 NZDCHF at 0.67873 take profit at 0.68076 311 | period_flags=0 312 | create_time=1555287300 313 | color=16711680 314 | weight=1 315 | background=0 316 | symbol_code=4 317 | anchor_pos=0 318 | filling=0 319 | selectable=1 320 | hidden=0 321 | zorder=0 322 | time_0=1555298100 323 | value_0=0.680760 324 | 325 | 326 | type=22 327 | object_name=#167411218 buy 0.01 NZDCHF at 0.67874 328 | period_flags=0 329 | create_time=1555288200 330 | description= 0(#8139126) (8139126) 331 | color=16711680 332 | weight=1 333 | background=0 334 | symbol_code=1 335 | anchor_pos=0 336 | filling=0 337 | selectable=1 338 | hidden=0 339 | zorder=0 340 | time_0=1555299000 341 | value_0=0.678740 342 | 343 | 344 | type=22 345 | object_name=#167411218 buy 0.01 NZDCHF at 0.67874 stop loss at 0.67711 346 | period_flags=0 347 | create_time=1555288200 348 | color=255 349 | weight=1 350 | background=0 351 | symbol_code=4 352 | anchor_pos=0 353 | filling=0 354 | selectable=1 355 | hidden=0 356 | zorder=0 357 | time_0=1555299000 358 | value_0=0.677110 359 | 360 | 361 | type=22 362 | object_name=#167411218 buy 0.01 NZDCHF at 0.67874 take profit at 0.68077 363 | period_flags=0 364 | create_time=1555288200 365 | color=16711680 366 | weight=1 367 | background=0 368 | symbol_code=4 369 | anchor_pos=0 370 | filling=0 371 | selectable=1 372 | hidden=0 373 | zorder=0 374 | time_0=1555299000 375 | value_0=0.680770 376 | 377 | 378 | type=22 379 | object_name=#167411264 buy 0.01 NZDCHF at 0.67868 380 | period_flags=0 381 | create_time=1555289111 382 | description= 0(#8139126) (8139126) 383 | color=16711680 384 | weight=1 385 | background=0 386 | symbol_code=1 387 | anchor_pos=0 388 | filling=0 389 | selectable=1 390 | hidden=0 391 | zorder=0 392 | time_0=1555299911 393 | value_0=0.678680 394 | 395 | 396 | type=22 397 | object_name=#167411264 buy 0.01 NZDCHF at 0.67868 stop loss at 0.67705 398 | period_flags=0 399 | create_time=1555289111 400 | color=255 401 | weight=1 402 | background=0 403 | symbol_code=4 404 | anchor_pos=0 405 | filling=0 406 | selectable=1 407 | hidden=0 408 | zorder=0 409 | time_0=1555299911 410 | value_0=0.677050 411 | 412 | 413 | type=22 414 | object_name=#167411264 buy 0.01 NZDCHF at 0.67868 take profit at 0.68071 415 | period_flags=0 416 | create_time=1555289111 417 | color=16711680 418 | weight=1 419 | background=0 420 | symbol_code=4 421 | anchor_pos=0 422 | filling=0 423 | selectable=1 424 | hidden=0 425 | zorder=0 426 | time_0=1555299911 427 | value_0=0.680710 428 | 429 | 430 | type=22 431 | object_name=#167417085 buy 0.01 NZDCHF at 0.67756 432 | period_flags=0 433 | create_time=1555339501 434 | description= 0(#8139126) (8139126) 435 | color=16711680 436 | weight=1 437 | background=0 438 | symbol_code=1 439 | anchor_pos=0 440 | filling=0 441 | selectable=1 442 | hidden=0 443 | zorder=0 444 | time_0=1555350301 445 | value_0=0.677560 446 | 447 | 448 | type=22 449 | object_name=#167417085 buy 0.01 NZDCHF at 0.67756 stop loss at 0.67563 450 | period_flags=0 451 | create_time=1555339501 452 | color=255 453 | weight=1 454 | background=0 455 | symbol_code=4 456 | anchor_pos=0 457 | filling=0 458 | selectable=1 459 | hidden=0 460 | zorder=0 461 | time_0=1555350301 462 | value_0=0.675630 463 | 464 | 465 | type=22 466 | object_name=#167417085 buy 0.01 NZDCHF at 0.67756 take profit at 0.67998 467 | period_flags=0 468 | create_time=1555339501 469 | color=16711680 470 | weight=1 471 | background=0 472 | symbol_code=4 473 | anchor_pos=0 474 | filling=0 475 | selectable=1 476 | hidden=0 477 | zorder=0 478 | time_0=1555350301 479 | value_0=0.679980 480 | 481 | 482 | 483 | 484 | 485 | name=FALCON_F2\Falcon_F2 486 | flags=343 487 | window_num=0 488 | 489 | Header1=----------EA General Settings----------- 490 | MagicNumber=8139126 491 | TerminalType=1 492 | R_Management=true 493 | Slippage=3 494 | IsECNbroker=false 495 | OnJournaling=false 496 | EnableDashboard=true 497 | Header2=----------Trading Rules Variables ----------- 498 | RobotBehavior=daily 499 | usePredictedSL=false 500 | usePredictedTP=false 501 | TimeMaxHoldM1=75 502 | TimeMaxHoldM15=1125 503 | TimeMaxHoldM60=4500 504 | entryTriggerM1=20 505 | entryTriggerM15=50 506 | entryTriggerM60=100 507 | stopLossFactorM1=2.0 508 | stopLossFactorM15=0.8 509 | stopLossFactorM60=0.8 510 | takeProfFactorM1=1.0 511 | takeProfFactorM15=1.0 512 | takeProfFactorM60=1.0 513 | predictor_periodM1=1 514 | predictor_periodM15=15 515 | predictor_periodH1=60 516 | closeAllOnFridays=true 517 | use_market_type=true 518 | Header3=----------Position Sizing Settings----------- 519 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored 520 | Lots=0.01 521 | IsSizingOn=false 522 | Risk=1.0 523 | MaxPositionsAllowed=25 524 | Header4=----------TP & SL Settings----------- 525 | UseFixedStopLoss=true 526 | FixedStopLoss=0.0 527 | IsVolatilityStopOn=true 528 | VolBasedSLMultiplier=4.0 529 | UseFixedTakeProfit=true 530 | FixedTakeProfit=0.0 531 | IsVolatilityTakeProfitOn=true 532 | VolBasedTPMultiplier=6.0 533 | Header5=----------Hidden TP & SL Settings----------- 534 | UseHiddenStopLoss=false 535 | FixedStopLoss_Hidden=0.0 536 | IsVolatilityStopLossOn_Hidden=false 537 | VolBasedSLMultiplier_Hidden=0.0 538 | UseHiddenTakeProfit=false 539 | FixedTakeProfit_Hidden=0.0 540 | IsVolatilityTakeProfitOn_Hidden=false 541 | VolBasedTPMultiplier_Hidden=0.0 542 | Header6=----------Breakeven Stops Settings----------- 543 | UseBreakevenStops=false 544 | BreakevenBuffer=0.0 545 | Header7=----------Hidden Breakeven Stops Settings----------- 546 | UseHiddenBreakevenStops=false 547 | BreakevenBuffer_Hidden=0.0 548 | Header8=----------Trailing Stops Settings----------- 549 | UseTrailingStops=false 550 | TrailingStopDistance=0.0 551 | TrailingStopBuffer=0.0 552 | Header9=----------Hidden Trailing Stops Settings----------- 553 | UseHiddenTrailingStops=false 554 | TrailingStopDistance_Hidden=0.0 555 | TrailingStopBuffer_Hidden=0.0 556 | Header10=----------Volatility Trailing Stops Settings----------- 557 | UseVolTrailingStops=false 558 | VolTrailingDistMultiplier=0.0 559 | VolTrailingBuffMultiplier=0.0 560 | Header11=----------Hidden Volatility Trailing Stops Settings----------- 561 | UseHiddenVolTrailing=false 562 | VolTrailingDistMultiplier_Hidden=0.0 563 | VolTrailingBuffMultiplier_Hidden=0.0 564 | Header12=----------Volatility Measurement Settings----------- 565 | atr_period=14 566 | Header13=----------Set Max Loss Limit----------- 567 | IsLossLimitActivated=false 568 | LossLimitPercent=50.0 569 | Header14=----------Set Max Volatility Limit----------- 570 | IsVolLimitActivated=false 571 | VolatilityMultiplier=3.0 572 | ATRTimeframe=60 573 | ATRPeriod=14 574 | 575 | 576 | 577 | 578 | --------------------------------------------------------------------------------