Close Navigation
Learn more about IBKR accounts
Python Itertools Tutorial – Part VI

Python Itertools Tutorial – Part VI

Posted July 16, 2020
Rekhit Pachanekar
QuantInsti

Get up-to-speed in this series with Part IPart II,  Part III, Part IV, and Part V.

The combinations_with_replacement() iterator

If you had seen the output above, there were no stocks repeated in the combinations. This iterator takes care of that by listing the values repeated too.The Python code for this iterator is as follows:

# Combinations_with_replacement itertool
stocks_NYSE = [‘TSLA’, ‘MSFT’, ‘NVDA’, ‘GOOGL’ , ‘AAPL’ , ‘INTC’]
result = itertools.combinations_with_replacement(stocks_NYSE, 2)
for each in result:
print(each)

The output would is shown below:

(‘TSLA’, ‘TSLA’)
(‘TSLA’, ‘MSFT’)
(‘TSLA’, ‘NVDA’)
(‘TSLA’, ‘GOOGL’)
(‘TSLA’, ‘AAPL’)
(‘TSLA’, ‘INTC’)
(‘MSFT’, ‘MSFT’)
(‘MSFT’, ‘NVDA’)
(‘MSFT’, ‘GOOGL’)
(‘MSFT’, ‘AAPL’)
(‘MSFT’, ‘INTC’)
(‘NVDA’, ‘NVDA’)
(‘NVDA’, ‘GOOGL’)
(‘NVDA’, ‘AAPL’)
(‘NVDA’, ‘INTC’)
(‘GOOGL’, ‘GOOGL’)
(‘GOOGL’, ‘AAPL’)
(‘GOOGL’, ‘INTC’)
(‘AAPL’, ‘AAPL’)
(‘AAPL’, ‘INTC’)
(‘INTC’, ‘INTC’)

Well, these were the combinations, but what about the permutations? Let’s check it out right now.

The permutations() iterator

Recall that in permutations, the order does matter. Hence (‘TSLA’, ‘MSFT’) and (‘MSFT’, ‘TSLA’) are entirely different in permutations. Having said that, let us see the python code for this iterator.

# Permutations() itertool
stocks_NYSE = [‘TSLA’, ‘MSFT’, ‘NVDA’, ‘GOOGL’ , ‘AAPL’ , ‘INTC’]
result = itertools.permutations(stocks_NYSE, 2)
for each in result:
print(each)

The output would be as follows:

(‘TSLA’, ‘MSFT’)
(‘TSLA’, ‘NVDA’)
(‘TSLA’, ‘GOOGL’)
(‘TSLA’, ‘AAPL’)
(‘TSLA’, ‘INTC’)
(‘MSFT’, ‘TSLA’)
(‘MSFT’, ‘NVDA’)
(‘MSFT’, ‘GOOGL’)
(‘MSFT’, ‘AAPL’)
(‘MSFT’, ‘INTC’)
(‘NVDA’, ‘TSLA’)
(‘NVDA’, ‘MSFT’)
(‘NVDA’, ‘GOOGL’)
(‘NVDA’, ‘AAPL’)
(‘NVDA’, ‘INTC’)
(‘GOOGL’, ‘TSLA’)
(‘GOOGL’, ‘MSFT’)
(‘GOOGL’, ‘NVDA’)
(‘GOOGL’, ‘AAPL’)
(‘GOOGL’, ‘INTC’)
(‘AAPL’, ‘TSLA’)
(‘AAPL’, ‘MSFT’)
(‘AAPL’, ‘NVDA’)
(‘AAPL’, ‘GOOGL’)
(‘AAPL’, ‘INTC’)
(‘INTC’, ‘TSLA’)
(‘INTC’, ‘MSFT’)
(‘INTC’, ‘NVDA’)
(‘INTC’, ‘GOOGL’)
(‘INTC’, ‘AAPL’)

Visit https://www.quantinsti.com/ for ready-to-use Python functions as applied in trading and data analysis.

Disclosure: Interactive Brokers

Information posted on IBKR Campus that is provided by third-parties does NOT constitute a recommendation that you should contract for the services of that third party. Third-party participants who contribute to IBKR Campus are independent of Interactive Brokers and Interactive Brokers does not make any representations or warranties concerning the services offered, their past or future performance, or the accuracy of the information provided by the third party. Past performance is no guarantee of future results.

This material is from QuantInsti and is being posted with its permission. The views expressed in this material are solely those of the author and/or QuantInsti and Interactive Brokers is not endorsing or recommending any investment or trading discussed in the material. This material is not and should not be construed as an offer to buy or sell any security. It should not be construed as research or investment advice or a recommendation to buy, sell or hold any security or commodity. This material does not and is not intended to take into account the particular financial conditions, investment objectives or requirements of individual customers. Before acting on this material, you should consider whether it is suitable for your particular circumstances and, as necessary, seek professional advice.

Disclosure: Displaying Symbols on Video

Any stock, options or futures symbols displayed are for illustrative purposes only and are not intended to portray recommendations.

IBKR Campus Newsletters

This website uses cookies to collect usage information in order to offer a better browsing experience. By browsing this site or by clicking on the "ACCEPT COOKIES" button you accept our Cookie Policy.