Posts

Showing posts from July, 2023

MOVING AVERAGE EXPERT ADVISOR

Image
I NTRODUCTION. A Moving Average Expert Advisor (EA) is an automated trading system designed to execute trades based on the crossover of two moving averages. Moving averages are widely used in technical analysis to smooth out price data and identify trends. The EA described here uses a combination of a faster moving average with a period of 20 and a slower moving average with a period of 50. When the faster moving average crosses above the slower moving average, it generates a buy signal, and when it crosses below the slower moving average, it generates a sell signal. The primary purpose of this EA is to take advantage of trending market conditions by entering trades in the direction of the trend. The use of moving averages for generating signals ensures that the EA reacts quickly to changes in price trends, making it suitable for capturing medium to long-term price movements. Trade Strategy: Buy Signal: The EA generates a buy signal when the 20-period moving average crosses above t...

RSI EXPERT ADVISOR

Image
RSI EXPERT This RSI expert advisor is based on the RSI indicator with regions above 70% show that the instrument is overbought, it provides a sell signal and when the line is below 30%, it indicates that the market has been oversold and creates a buy signal. The expert advisor trades immediately these conditions are met and has a stop loss of 0.003 and a take profit of 0.004 that modify as the trade is open, it also closes trades and opens new trades if the market sentiment changes from buy to sell and vice versa. THE CODE #include<Trade/Trade.mqh>   CTrade trade; int RSIhandle;         ulong tickets;              int OnInit(){      RSIhandle = iRSI(_Symbol,PERIOD_CURRENT,14,PRICE_CLOSE);         return(0);   } void OnDeinit(const int reason){   } void OnTick() {     ...

104 : INSURANCE

Image
  104: INSURANCE Contents INTRODUCTION .. 4 DEFINITIONS . 4 Underwriting . 4 Premium .. 4 Loss . 4 Damages . 4 Coverage . 4 Insured . 5 Insurer . 5 Agent . 5 Adjuster . 5 Benefit . 5 Benefit year . 5 Dependent . 5 Claim .. 6 Deductible . 6 Coinsurance . 6 Copayment . 6 Exclusion or limitation . 6 Policy Limit . 6 TYPES OF INSURANCE . 7 LIFE INSURANCE . 7 Whole life . 7 Term life . 7 Endowment Policy . 8 Money-back Policy . 8 Unit-linked Insurance Plans (ULIPs) . 8 Child Plan . 8 Pension Plans . 8 HEALTH INSURANCE . 8 Exclusive Provider Organization (EPO) . 9 Health Maintenance Organization (HMO) . 9 Point of Service (POS) . 9 Preferred Provider Organization (PPO) . 9 MOTOR INSURANCE . 9 Third-party car insurance . 10 Third-party fire and theft insurance . 10 Comprehensive car insurance . 10 HOME INSURANCE . 10 Dwelling coverage . 11 Personal property coverage . 11 Other structures on the ...