From 0aa8f3ab25c9af477e430c7e31b5f90a8de43da5 Mon Sep 17 00:00:00 2001 From: 5paisa <65898074+5paisa@users.noreply.github.com> Date: Fri, 7 Jan 2022 21:11:29 +0530 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ce7d3093..d1ef086e 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,9 @@ strategy=strategies(user="random_email@xyz.com", passw="password", dob="YYYYMMDD Use the following to execute the strategy (note:- they are executed at market price only) ```py #short_straddle(,,,,) -strategy.short_straddle("banknifty",'37000','50','20210610','I') +strategy.short_straddle("banknifty",'37000','50','20210610','I',tag='') + +#Using tag is optional ``` ```py #short_strangle(,,,,) @@ -279,7 +281,9 @@ strategy.short_strangle("banknifty",['35300','37000'],'50','20210610','D') ``` ```py #long_straddle(,,,,) -strategy.long_straddle("banknifty",'37000','50','20210610','I') +strategy.long_straddle("banknifty",'37000','50','20210610','I',tag='') + +#Using tag is optional ``` ```py #long_strangle(,,,,) @@ -293,7 +297,9 @@ strategy.iron_condor("NIFTY",["15000","15200"],["15100","15150"],"75","20210603" ```py #iron_fly(,,,,,) -strategy.iron_fly("NIFTY",["15000","15200"],"15100","75","20210610","I") +strategy.iron_fly("NIFTY",["15000","15200"],"15100","75","20210610","I",tag='') + +#Using tag is optional ``` ```py @@ -313,13 +319,16 @@ strategy.call_ladder("NIFTY","15100",["15300","15400"],"75","20210610","I") ```py #put_ladder(,,,,,) -strategy.put_ladder("NIFTY","15000",["14800","14500"],"75","20210610","I") +strategy.put_ladder("NIFTY","15000",["14800","14500"],"75","20210610","I",tag='') + +#Using tag is optional ``` ```py #ladder(,,,,,) strategy.ladder("sbin",["400","420"],["350","370","450","500"],"1500","20210729","D") ``` + #### Trading Ideas ```py To get actionable buy trades use:-