from pybit import usdt_perpetual
session_auth = usdt_perpetual.HTTP(
endpoint="https://api-testnet.bybit.com",
api_key="your api key",
api_secret="your api secret"
)
What is a reduce-only order?True means your position can only reduce in size if this order is triggered. Whenreduce_onlyis true, take profit/stop loss cannot be set
close_on_trigger
true
bool
What is a close on trigger order?For a closing order. It can only reduce your position, not increase it. If the account has insufficient available balance when the closing order is triggered, then other active orders of similar contracts will be cancelled or reduced. It can be used to ensure your stop loss reduces your position regardless of current available margin.
order_link_id
false
string
Unique user-set order ID. Maximum length of 36 characters
take_profit
false
number
Take profit price, only take effect upon opening the position
stop_loss
false
number
Stop loss price, only take effect upon opening the position
Position idx, used to identify positions in different position modes.Requiredif you are under One-Way Mode: 0-One-Way Mode 1-Buy side of both side mode 2-Sell side of both side mode
3. 모든주문취소
print(session_auth.cancel_all_active_orders(
symbol="BTCUSDT" #BTCUSDT 선물 모든 주문 취소
))
4. 조건부 주문
from pybit import usdt_perpetual
session_auth = usdt_perpetual.HTTP(
endpoint="https://api-testnet.bybit.com",
api_key="your api key",
api_secret="your api secret"
)
print(session_auth.place_conditional_order(
symbol="BTCUSDT",
order_type="Limit",
side="Buy",
qty=1,
price=8100,
base_price=16100,
stop_px=8150,
time_in_force="GoodTillCancel",
trigger_by="LastPrice",
order_link_id="cus_order_id_1",
reduce_only=False,
close_on_trigger=False
))
내가 개발한 볼린저밴드매매는 , 비트코인의 추세를 예측하고 중단기적으로 올라갈거 같아서 롱볼린저 밴드를 자주 이용했다. 하락장에서도 나름 수익을 보았다 (원웨이 하락이 없었기때문...) 볼린저밴드 매매 같은경우 횡보장에도 수익을 볼수있어서 좋았고, 만약 내가 롱 볼린저밴드를 돌리는데 상승장이었다면 큰수익이 나온다는게 좋았다.
ㅇ볼린저밴드 자동매매는 횡보장=수익 , 상승장=수익, 하락장=손실or본절 인거같다
그리드 자동매매 같은경우 약 일주일 내내 돌려봤는데 손실이 난적이 없었다.
물론 6만달러로 자동매매를 돌리는데 하루수익이 100~300달러 밖에 안나온다
그리드매매같은 경우 수익률은 낮지만 횡보장,변동성이 심한장에 안정적으로 항상 수익이나고 원웨이 하락 or 원웨이 상승 장에 안좋다
유튜브 스트리머 매매 같은경우 단기적으로 크게 손실볼수도있지만 시드만 넉넉하다면 결국 수익을 보는거같다
오늘 크게잃지만 내일은 크게 벌거라는 믿음으로 해야된다... 재미삼아 만들었지만 이게 가장 시드 등락폭이 심하다