پلتفرمهای معاملاتی: تفاوت میان نسخهها
خط ۱۵: | خط ۱۵: | ||
[https://www.metatrader4.com/en سایت متاتریدر4] | [https://www.metatrader4.com/en سایت متاتریدر4] | ||
<!DOCTYPE html> | |||
<html lang="fa" dir="rtl"> | <html lang="fa" dir="rtl"> | ||
<head> | <head> | ||
<meta charset="UTF-8"> | <meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>باکس | <title>باکس بروکر واکنشگرا</title> | ||
<style> | <style> | ||
@font-face { | @font-face { | ||
font-family: 'Vazir'; | font-family: 'Vazir'; | ||
خط ۳۵: | خط ۲۷: | ||
} | } | ||
/* | /* استایلهای کلی ایزوله */ | ||
. | .broker-container { | ||
font-family: 'Vazir', Arial, sans-serif; | font-family: 'Vazir', Arial, sans-serif; | ||
background-color: #f5f7fa; | background-color: #f5f7fa; | ||
display: flex; | display: flex; | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
padding: 20px; | |||
box-sizing: border-box; | |||
} | } | ||
.broker-box { | |||
. | background: #2c3e50; | ||
color: #fff; | |||
width: 100%; | |||
max-width: 800px; | |||
border-radius: 12px; | border-radius: 12px; | ||
box-shadow: 0 4px | box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); | ||
overflow: hidden; | overflow: hidden; | ||
display: flex; | |||
flex-direction: column; | |||
gap: 16px; | |||
box-sizing: border-box; | |||
padding: 20px; | |||
} | } | ||
. | /* هدر بروکر */ | ||
.broker-header { | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
} | } | ||
. | .broker-header .broker-info { | ||
display: flex; | |||
align-items: center; | |||
gap: 10px; | |||
} | } | ||
. | .broker-logo { | ||
width: 50px; | |||
height: 50px; | |||
border-radius: 50%; | |||
background: #42eb9c; | |||
background | |||
} | } | ||
. | .broker-rating { | ||
font-size: | font-size: 1.2rem; | ||
color: #f39c12; | |||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
. | /* بخش ویژگیها */ | ||
.broker-features { | |||
display: grid; | |||
grid-template-columns: repeat(2, 1fr); | |||
gap: 10px; | |||
text-align: center; | |||
} | } | ||
. | .broker-feature { | ||
background: #34495e; | |||
background | |||
border-radius: 8px; | border-radius: 8px; | ||
padding: 10px; | |||
font- | font-size: 0.9rem; | ||
} | } | ||
/* اطلاعات حساب */ | |||
.broker-accounts { | |||
display: flex; | |||
flex-wrap: wrap; | |||
justify-content: space-between; | |||
background: #1f2c38; | |||
padding: 10px; | |||
border-radius: 8px; | |||
gap: 10px; | |||
/* | |||
. | |||
display: flex; | |||
flex- | |||
background: | |||
} | } | ||
. | .account-info { | ||
flex: 1; | text-align: center; | ||
flex: 1 1 120px; | |||
font-size: 0.9rem; | |||
} | } | ||
. | .highlight { | ||
font-weight: bold; | font-weight: bold; | ||
color: #42eb9c; | color: #42eb9c; | ||
} | } | ||
. | /* واکنشگرایی */ | ||
@media (max-width: 600px) { | |||
.broker-header { | |||
flex-direction: column; | |||
align-items: flex-start; | |||
gap: 10px; | |||
} | |||
.broker-features { | |||
grid-template-columns: 1fr; | |||
} | |||
.broker-accounts { | |||
flex-direction: column; | |||
align-items: center; | |||
} | } | ||
} | } | ||
خط ۲۴۹: | خط ۱۳۶: | ||
</head> | </head> | ||
<body> | <body> | ||
<!-- باکس بروکر --> | |||
<div class="broker-container"> | |||
<div class="broker-box"> | |||
<!-- هدر --> | |||
<div class="broker-header"> | |||
<div class="broker-info"> | |||
<div class="broker-logo"></div> | |||
<div> | |||
<div class="highlight">بروکر آلپاری</div> | |||
<div style="font-size: 0.9rem; color: #ccc;">Alpari</div> | |||
</div> | |||
</div> | |||
<div class="broker-rating"> | |||
<span>۴</span> /۵ ⭐ | |||
</div> | |||
</div> | |||
<!-- ویژگیها --> | |||
<div class="broker-features"> | |||
<div class="broker-feature">حداقل واریز<br><span class="highlight">$50</span></div> | |||
<div class="broker-feature">حداکثر لوریج<br><span class="highlight">3000</span></div> | |||
<div class="broker-feature">پلتفرمها<br><span class="highlight">MT4, MT5</span></div> | |||
<div class="broker-feature">نمادها<br><span class="highlight">250+</span></div> | |||
</div> | |||
<!-- اطلاعات حساب --> | |||
<div class="broker-accounts"> | |||
<div class="account-info">عنوان حساب<br><span class="highlight">Standard MT4</span></div> | |||
<div class="account-info">حداقل واریز<br><span class="highlight">$50</span></div> | |||
<div class="account-info">اسپرد<br><span class="highlight">از 0.3 پیپ</span></div> | |||
<div class="account-info">کمیسیون<br><span class="highlight">ندارد</span></div> | |||
<div class=" | <div class="account-info">ارز پایه<br><span class="highlight">USD, EUR</span></div> | ||
< | |||
</div> | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
</body> | </body> | ||
</html> | </html> |
نسخهٔ ۱۸ دسامبر ۲۰۲۴، ساعت ۰۹:۵۶
متاتریدر(MetaTrader) نرمافزاری است که واسطه تریدر و بروکر است که دستورات و سفارشات معاملاتی را به بروکر انتقال میدهد.
نرم افزار متاترید ۵
نرم افزار متاتریدر ۴
پیوند به بیرون
<!DOCTYPE html>
بروکر آلپاری
Alpari
حداقل واریز
$50
$50
حداکثر لوریج
3000
3000
پلتفرمها
MT4, MT5
MT4, MT5
نمادها
250+
250+
عنوان حساب
Standard MT4
Standard MT4
حداقل واریز
$50
$50
اسپرد
از 0.3 پیپ
از 0.3 پیپ
کمیسیون
ندارد
ندارد
ارز پایه
USD, EUR
USD, EUR