·Î±×ÀÎ
|
ȸ¿ø°¡ÀÔ
|
ȸ»ç¼Ò°³
|
»çÀÌÆ®¸Ê
Ä¿¹Â´ÏƼ | ¼ö½ÄÀÛ¼º Q&A
ÀÛ¼ºÀÚ :
¿¹½º½ºÅ¹
ÀÛ¼ºÀÏ : 2022-06-24 ¿ÀÈÄ 1:16:26 Á¶È¸¼ö : 20
Re : ¼ö½Ä¾î ºÎʵ右´Ï´Ù
¾È³çÇϼ¼¿ä
¿¹½º½ºÅ¹ÀÔ´Ï´Ù.
1
input : ÀÍÀýƽ¼ö(300),¼ÕÀýƽ¼ö(40);
if NextBarSdate != sDate Then
{
if NextBarOpen < C Then
Buy("b",AtStop,NextBarOpen+PriceScale*1);
if NextBarOpen > C Then
ExitLong("bx",AtStop,NextBarOpen-PriceScale*1);
}
SetStopProfittarget(PriceScale*ÀÍÀýƽ¼ö,PointStop);
SetStopLoss(PriceScale*¼ÕÀýƽ¼ö,PointStop);
2
input : ÀÍÀýƽ¼ö(300),¼ÕÀýƽ¼ö(40);
if NextBarSdate != sDate Then
{
if NextBarOpen > C Then
ExitShort("sx",AtStop,NextBarOpen+PriceScale*1);
if NextBarOpen < C Then
Sell("s",AtStop,NextBarOpen-PriceScale*1);
}
SetStopProfittarget(PriceScale*ÀÍÀýƽ¼ö,PointStop);
SetStopLoss(PriceScale*¼ÕÀýƽ¼ö,PointStop);
3
input : ÀÍÀýƽ¼ö(300),¼ÕÀýƽ¼ö(40);
if NextBarSdate != sDate Then
{
if NextBarOpen < C Then
{
Buy("b",AtStop,NextBarOpen+PriceScale*1);
Sell("s",AtStop,NextBarOpen-PriceScale*1);
}
if NextBarOpen > C Then
{
ExitLong("bx",AtStop,NextBarOpen-PriceScale*1);
ExitShort("sx",AtStop,NextBarOpen+PriceScale*1);
}
}
SetStopProfittarget(PriceScale*ÀÍÀýƽ¼ö,PointStop);
SetStopLoss(PriceScale*¼ÕÀýƽ¼ö,PointStop);
Áñ°Å¿î ÇÏ·çµÇ¼¼¿ä
> Ǫ¸¥ ´ÔÀÌ ¾´ ±ÛÀÔ´Ï´Ù.
> Á¦¸ñ : ¼ö½Ä¾î ºÎʵ右´Ï´Ù
> input : ÀÍÀýƽ¼ö(300),¼ÕÀýƽ¼ö(40);
if NextBarSdate != sDate Then
{
if NextBarOpen < C Then
Buy("b",AtStop,NextBarOpen+PriceScale*1);
if NextBarOpen > C Then
Sell("s",AtStop,NextBarOpen-PriceScale*1);
}
SetStopProfittarget(PriceScale*ÀÍÀýƽ¼ö,PointStop);
SetStopLoss(PriceScale*¼ÕÀýƽ¼ö,PointStop);
------------------
input : ÀÍÀýƽ¼ö(300),¼ÕÀýƽ¼ö(40);
if NextBarSdate != sDate Then
{
if NextBarOpen > C Then
Buy("b",AtStop,NextBarOpen+PriceScale*1);
if NextBarOpen < C Then
Sell("s",AtStop,NextBarOpen-PriceScale*1);
}
SetStopProfittarget(PriceScale*ÀÍÀýƽ¼ö,PointStop);
SetStopLoss(PriceScale*¼ÕÀýƽ¼ö,PointStop);
---------------
µÎ ¼ö½Ä¾îÀÇ ÇÕü¸¦ ºÎʵ右´Ï´Ù.
1. 1¹ø ¼ö½Ä¾îÀÇ buy ÁøÀÔÈÄ sell ÁÖ¹®ÀÌ ¾Æ´Ñ û»ê
2. 2¹ø ¼ö½Ä¾îÀÇ sell ÁøÀÔÈÄ buy ÁÖ¹®ÀÌ ¾Æ´Ñ û»ê
3. ±× ´ÙÀ½ 2°¡Áö°¡ ÇÕüµÈ ¼ö½Ä¾î¸¦ ºÎŹ µå¸³´Ï´Ù.
¹®ÀÇ µå¸³´Ï´Ù.
Re : ÀüÈ·Î ´äº¯µå·È½À´Ï´Ù.
°ü·Ã ±Û ¸®½ºÆ®
77813
¼ö½Ä¾î ºÎʵ右´Ï´Ù
Ǫ¸¥
2022.06.24
20
ÇöÀç±Û
Re : ¼ö½Ä¾î ºÎʵ右´Ï´Ù
¿¹½º½ºÅ¹
2022.06.24
20